npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

gulp-remove-html-comments

1.0.1

@stevemao

npmHomeRepoSnykSocket
Downloads:7
$ npm install gulp-remove-html-comments
DailyWeeklyMonthlyYearly

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