Gulp plugin to minify HTML.
Install with npm:
npm install --save gulp-html-minifier-terserPlease do not report issues related to HTML parsing and output in this repository. Report those issues to the html-minifier-terser issue tracker.
See the html-minifier-terser docs for all available options.
const gulp = require("gulp");
const htmlmin = require("gulp-html-minifier-terser");
gulp.task("minify", () => {
return gulp
.src("src/*.html")
.pipe(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest("dist"));
});Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Running and reviewing unit tests is a great way to get familiar with a library and its API. You can install dependencies and run tests with the following command:
npm install && npm test| Commits | Contributor |
|---|---|
| 41 | shinnn |
| 28 | jonschlinkert |
| 27 | pioug |
| 11 | doowb |
| 7 | stevelacy |
| 2 | TheDancingCode |
| 1 | cwonrails |
| 1 | igoradamenko |
| 1 | oblador |
| 1 | jdalton |
| 1 | JoseChirivella14 |
| 1 | nschloe |
| 1 | rodrigograca31 |
| 1 | tomByrer |
Jon Schlinkert
Shinnosuke Watanabe
Copyright © 2018, Shinnosuke Watanabe. Released under the MIT License.