Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1252 from lirantal/bugfix/replace-gulp-css-min
Browse files Browse the repository at this point in the history
fix(gulp): replacing gulp-cssmin which has been deprecated and un-maintained with gulp-csso
  • Loading branch information
lirantal committed Mar 27, 2016
2 parents b46ebc8 + b661284 commit 8da3725
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 @@ -160,7 +160,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 @@ -93,7 +93,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-less": "~3.0.5",
Expand Down

0 comments on commit 8da3725

Please sign in to comment.