Package Exports
- gulp-htmlmin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-htmlmin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-htmlmin 
Minify HTML.
Getting Started
Install the module with: npm install gulp-htmlmin
Usage
var gulp = require('gulp');
var htmlmin = require('gulp-htmlmin');
gulp.task('minify', function() {
gulp.src('./src/*.html')
.pipe(htmlmin({collapseWhitespace: true}))
.pipe(gulp.dest('./dist'))
});See the html-minifer docs for options.
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.
Author
License
Copyright (c) 2014 Jon Schlinkert Licensed under the MIT license.