Package Exports
- gulp-remove-html-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-remove-html-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-remove-html-comments 
Remove comments in html with remove-html-comments
Issues with the output should be reported on the remove-html-comments issue tracker.
Install
$ npm install --save-dev gulp-remove-html-comments
Usage
var gulp = require('gulp');
var removeHtmlComments = require('gulp-remove-html-comments');
gulp.task('default', function () {
return gulp.src('src/*.html')
.pipe(removeHtmlComments())
.pipe(gulp.dest('dist'));
});
License
MIT © Steve Mao