Minify CSS with CSSO.
If you have any difficulties with the output of this plugin, please use the CSSO tracker.
Installation
Install via npm:
npm install gulp-csso --save-dev
Example
var gulp = require('gulp');
var csso = require('gulp-csso');
gulp.task('default', function() {
return gulp.src('./main.css')
.pipe(csso())
.pipe(gulp.dest('./out'));
});
API
csso(structureMinimization)
A boolean value; the default is to use structure minimization for maximum compression, by passing false (or no parameters). See the CSSO description for more information. Pass true instead if you want to disable this feature.
Contributing
Pull requests are welcome. If you add functionality, then please add unit tests to cover it.
License
MIT © Ben Briggs