/gulp-csso

Minify CSS with CSSO.

Primary LanguageJavaScriptMIT LicenseMIT

gulp-csso Build Status NPM version Dependency Status

Minify CSS with CSSO.

If you have any difficulties with the output of this plugin, please use the CSSO tracker.

Install

With npm do:

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(disableStructureMinimization)

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