Skip to content

Commit

Permalink
clean-css bump
Browse files Browse the repository at this point in the history
  • Loading branch information
scniro committed Jul 8, 2017
1 parent edd64a9 commit 4a4daa1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ var istanbul = require('gulp-istanbul');

gulp.task('pre-test', function () {
return gulp.src(['index.js'])
.pipe(istanbul())
.pipe(istanbul.hookRequire());
.pipe(istanbul())
.pipe(istanbul.hookRequire());
});

gulp.task('test', ['pre-test'], function () {
return gulp.src('test/*.js')
.pipe(mocha({reporter: 'dot'}))
.pipe(istanbul.writeReports({
includeUntested: true,
reporters: ['lcov']
}))
.on('error', gutil.log);
.pipe(mocha({reporter: 'dot'}))
.pipe(istanbul.writeReports({
includeUntested: true,
reporters: ['lcov']
}))
.on('error', gutil.log);
});
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gulp-clean-css",
"description": "Minify css with clean-css.",
"homepage": "https://github.com/scniro/gulp-clean-css#readme",
"version": "3.5.0",
"version": "3.6.0",
"author": "scniro",
"license": "MIT",
"bugs": {
Expand All @@ -29,7 +29,7 @@
"gulpfriendly"
],
"dependencies": {
"clean-css": "4.1.5",
"clean-css": "4.1.6",
"gulp-util": "3.0.8",
"through2": "2.0.3",
"vinyl-sourcemaps-apply": "0.2.1"
Expand All @@ -48,7 +48,7 @@
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "2.6.0",
"mocha": "3.4.2",
"vinyl": "2.0.2",
"vinyl": "2.1.0",
"vinyl-buffer": "1.0.0",
"vinyl-fs-fake": "1.1.0"
},
Expand Down

0 comments on commit 4a4daa1

Please sign in to comment.