Skip to content

Commit

Permalink
fix(gulp): replacing gulp-cssmin which has been deprecated and un-mai…
Browse files Browse the repository at this point in the history
…ntained with gulp-csso
  • Loading branch information
lirantal committed Mar 10, 2016
1 parent 065e01c commit b661284
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ gulp.task('uglify', function () {
// CSS minifying task
gulp.task('cssmin', function () {
return gulp.src(defaultAssets.client.css)
.pipe(plugins.cssmin())
.pipe(plugins.csso())
.pipe(plugins.concat('application.min.css'))
.pipe(gulp.dest('public/dist'));
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"gulp-autoprefixer": "~3.1.0",
"gulp-concat": "~2.6.0",
"gulp-csslint": "~0.2.0",
"gulp-cssmin": "~0.1.7",
"gulp-csso": "~1.1.0",
"gulp-eslint": "~2.0.0",
"gulp-imagemin": "~2.4.0",
"gulp-jshint": "~2.0.0",
Expand Down

0 comments on commit b661284

Please sign in to comment.