Skip to content

Commit 4a4daa1

Browse files
committedJul 8, 2017
clean-css bump
1 parent edd64a9 commit 4a4daa1

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed
 

‎gulpfile.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ var istanbul = require('gulp-istanbul');
55

66
gulp.task('pre-test', function () {
77
return gulp.src(['index.js'])
8-
.pipe(istanbul())
9-
.pipe(istanbul.hookRequire());
8+
.pipe(istanbul())
9+
.pipe(istanbul.hookRequire());
1010
});
1111

1212
gulp.task('test', ['pre-test'], function () {
1313
return gulp.src('test/*.js')
14-
.pipe(mocha({reporter: 'dot'}))
15-
.pipe(istanbul.writeReports({
16-
includeUntested: true,
17-
reporters: ['lcov']
18-
}))
19-
.on('error', gutil.log);
14+
.pipe(mocha({reporter: 'dot'}))
15+
.pipe(istanbul.writeReports({
16+
includeUntested: true,
17+
reporters: ['lcov']
18+
}))
19+
.on('error', gutil.log);
2020
});

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gulp-clean-css",
33
"description": "Minify css with clean-css.",
44
"homepage": "https://github.com/scniro/gulp-clean-css#readme",
5-
"version": "3.5.0",
5+
"version": "3.6.0",
66
"author": "scniro",
77
"license": "MIT",
88
"bugs": {
@@ -29,7 +29,7 @@
2929
"gulpfriendly"
3030
],
3131
"dependencies": {
32-
"clean-css": "4.1.5",
32+
"clean-css": "4.1.6",
3333
"gulp-util": "3.0.8",
3434
"through2": "2.0.3",
3535
"vinyl-sourcemaps-apply": "0.2.1"
@@ -48,7 +48,7 @@
4848
"gulp-sass": "3.1.0",
4949
"gulp-sourcemaps": "2.6.0",
5050
"mocha": "3.4.2",
51-
"vinyl": "2.0.2",
51+
"vinyl": "2.1.0",
5252
"vinyl-buffer": "1.0.0",
5353
"vinyl-fs-fake": "1.1.0"
5454
},

0 commit comments

Comments
 (0)
Please sign in to comment.