Skip to content

nam162/gulp-htmlmin

 
 

Repository files navigation

gulp-htmlmin NPM version Build Status

gulp plugin to minify HTML.

Issues with the HTML parser and output must be reported on the html-minifier issue tracker.

Install with npm

npm i gulp-htmlmin --save-dev

Usage

var gulp = require('gulp');
var htmlmin = require('gulp-htmlmin');

gulp.task('minify', function() {
  return gulp.src('src/*.html')
    .pipe(htmlmin({collapseWhitespace: true}))
    .pipe(gulp.dest('dist'));
});

See the html-minifier docs for options.

Run tests

Install dev dependencies:

npm i && mocha

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Authors

Jon Schlinkert

Shinnosuke Watanabe

License

Copyright (c) 2014-2015 Jon Schlinkert
Released under the MIT license


This file was generated by verb on January 10, 2015.

About

Minify HTML

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 69.9%
  • JavaScript 30.1%