1.0.1 • Published 9 years ago

gulp-remove-html-comments v1.0.1

Weekly downloads
507
License
MIT
Repository
github
Last release
9 years ago

gulp-remove-html-comments Build Status

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