gulp-csso-fix-in-csso215

0.2.10 • Public • Published

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.

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.

Readme

Keywords

Package Sidebar

Install

npm i gulp-csso-fix-in-csso215

Weekly Downloads

0

Version

0.2.10

License

MIT

Last publish

Collaborators

  • plugged
  • marimax-org