JSPM

  • Created
  • Published
  • Downloads 249262
  • Score
    100M100P100Q175895F
  • License MIT

Minify css with clean-css.

Package Exports

  • gulp-clean-css

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-clean-css) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-clean-css

gulp plugin to minify CSS, using clean-css

Regarding Issues

This is just a simple gulp plugin, which means it's nothing more than a thin wrapper around clean-css. If it looks like you are having CSS related issues, please contact clean-css. Only create a new issue if it looks like you're having a problem with the plugin itself.

Installation

npm install --save-dev gulp-clean-css

API

var cleanCSS = require('gulp-clean-css');

cleanCSS([options])

options: Object
Return: Object (stream.Transform)

Options are directly passed to the CleanCSS constructor so all the clean-css options are available.

var gulp = require('gulp');
var cleanCSS = require('gulp-clean-css');

gulp.task('minify-css', function() {
  return gulp.src('styles/*.css')
    .pipe(cleanCSS({compatibility: 'ie8'}))
    .pipe(gulp.dest('dist'));
});

Source Maps can be generated by using gulp-sourcemaps.

var gulp = require('gulp');
var cleanCSS = require('gulp-clean-css');
var sourcemaps = require('gulp-sourcemaps');

gulp.task('minify-css', function() {
  return gulp.src('./src/*.css')
    .pipe(sourcemaps.init())
    .pipe(cleanCSS())
    .pipe(sourcemaps.write())
    .pipe(gulp.dest('dist'));
});

LICENSE

MIT © 2016 scniro