Skip to content

Commit

Permalink
Update gulp-minify-css to new name, gulp-clean-css
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrala committed Aug 29, 2016
1 parent 02ebe7c commit a25ce72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ gulp.task('css', function () {
pipe(plugins.rename(styles.name)).
pipe(gulp.dest(styles.dest)).
pipe(plugins.rename(styles.min)).
pipe(plugins.minifyCss()).
pipe(plugins.cleanCss()).
pipe(plugins.sourcemaps.write('.')).
pipe(gulp.dest(styles.dest));
});
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-minify-css": "^1.1.6",
"gulp-clean-css": "^2.0.0",
"gulp-qunit": "^1.2.1",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.3",
Expand Down Expand Up @@ -95,7 +95,6 @@
"scripts": {
"test": "npm run test-unit",
"test-unit": "./node_modules/karma/bin/karma start",
"test-sauce": "./node_modules/.bin/wdio wdio.conf.js",
"install-wdio": "npm install wdio-dot-reporter wdio-mocha-framework wdio-sauce-service wdio-selenium-standalone-service webdriverio"
"test-sauce": "./node_modules/.bin/wdio wdio.conf.js"
}
}

0 comments on commit a25ce72

Please sign in to comment.