gulp-more-css

Minify CSS using more-css & gulp.
If you have any difficulties with the output of this plugin, please use the more-css tracker.
Install via npm:
npm install gulp-more-css --save-dev
var gulp = require('gulp');
var moreCSS = require('gulp-more-css');
gulp.task('default', function() {
return gulp.src('./main.css')
.pipe(moreCSS())
.pipe(gulp.dest('./out'));
});
Type: Boolean
Apply further minimization. Defaults to true
.
Pull requests are welcome. If you add functionality, then please add unit tests to cover it.
MIT © Ben Briggs