gulp-remove-html-comments
v1.0.1
Published
Remove comments in html
Downloads
2,262
Maintainers
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