1.0.2 • Published 6 years ago

gulp-mini-htmlmin v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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

gulp plugin to minify HTML.

Install

Install with npm:

$ npm install --save gulp-htmlmin

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

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-minifer docs for options.

About

Contributing

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

Contributors

CommitsContributor
41shinnn
20jonschlinkert
8doowb
7stevelacy
2TheDancingCode
1cwonrails
1igoradamenko
1oblador
1jdalton
1JoseChirivella14
1nschloe
1tomByrer

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

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

Author

Jon Schlinkert

Shinnosuke Watanabe

License

Copyright © 2014-2017, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on December 24, 2017.