The Wayback Machine - https://web.archive.org/web/20200528062228/https://github.com/jonschlinkert/gulp-htmlmin
Skip to content
HTML JavaScript
Branch: master
Clone or download

Latest commit

Latest commit 190d031 Sep 8, 2018

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github closes #72 Sep 8, 2018
examples Add examples Mar 26, 2014
test stream errors Sep 8, 2018
.editorconfig update dotfiles Jan 10, 2015
.eslintrc.json refactor Sep 8, 2018
.gitattributes update dotfiles Jan 10, 2015
.gitignore run updaters Dec 24, 2017
.travis.yml refactor Sep 8, 2018
.verb.md refactor Sep 8, 2018
LICENSE refactor Sep 8, 2018
README.md update readme Sep 8, 2018
index.js stream errors Sep 8, 2018
package.json 5.0.1 Sep 8, 2018

README.md

gulp-htmlmin NPM version NPM monthly downloads NPM total downloads Linux Build Status

gulp plugin to minify HTML.

Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your ❤️ and support.

Install

Install with npm:

$ npm install --save gulp-htmlmin

Heads up!

Please do not report issues related to HTML parsing and output on this repository. Report those issues to the html-minifier issue tracker.

Usage

See the html-minifer docs for all available options.

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

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

About

Contributing

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

Running Tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test
Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Contributors

Commits Contributor
41 shinnn
20 jonschlinkert
11 doowb
7 stevelacy
2 TheDancingCode
1 cwonrails
1 igoradamenko
1 oblador
1 jdalton
1 JoseChirivella14
1 nschloe
1 tomByrer

Author

Jon Schlinkert

Shinnosuke Watanabe

License

Copyright © 2018, Shinnosuke Watanabe. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on September 08, 2018.

You can’t perform that action at this time.