JSPM

gulp-strip-css-comments

1.2.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2729
  • Score
    100M100P100Q130730F
  • License MIT

Strip comments from CSS

Package Exports

  • gulp-strip-css-comments

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-strip-css-comments) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-strip-css-comments Build Status

Strip comments from CSS using strip-css-comments

Install

$ npm install --save-dev gulp-strip-css-comments

Usage

var gulp = require('gulp');
var stripCssComments = require('gulp-strip-css-comments');

gulp.task('default', function () {
    return gulp.src('src/app.css')
        .pipe(stripCssComments())
        .pipe(gulp.dest('dist'));
});

stripCssComments([options])

options

See the strip-css-comments options.

License

MIT © Sindre Sorhus