universal-web-template
Version:
An universal web proejct template - let you quickly set up a project using Handlebars, sass and ReactJS for front-end templating. It can be adopted with most modern CMS.
29 lines (21 loc) • 519 B
JavaScript
/* jshint node: true */
/*
deploy:pages Task
Copy and minify html page files into deploy directory
*/
;
var minifyHTML = require('gulp-htmlmin'),
size = require('gulp-size');
module.exports = function() {
var source = this.opts.config.compile.root,
dest = this.opts.config.build.root;
return this.gulp.src([
this.opts.path.join(source, '**/*.html'),
])
.pipe(minifyHTML())
.pipe(size({
showFiles: true,
title: 'html file -'
}))
.pipe(this.gulp.dest(dest));
};