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 
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