gulp-htmlnano
v0.1.0
Published
Minify HTML with htmlnano
Downloads
47
Maintainers
Readme
gulp-htmlnano
Minify HTML with htmlnano.
Install
npm install --save-dev gulp-htmlnano
Usage
var gulp = require('gulp');
var htmlnano = require('gulp-htmlnano');
var options = {
removeComments: false
};
gulp.task('default', function() {
return gulp
.src('./index.html')
.pipe(htmlnano(options))
.pipe(gulp.dest('./build'));
});