From 59e3632278560ebdf29f2bbd1aa41542dd0e05ff Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 8 Jun 2016 00:14:29 +0100 Subject: [PATCH] Re-add minify-prod-html task --- gulp/minify-prod-html.coffee | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 gulp/minify-prod-html.coffee diff --git a/gulp/minify-prod-html.coffee b/gulp/minify-prod-html.coffee new file mode 100644 index 000000000..5e3b36317 --- /dev/null +++ b/gulp/minify-prod-html.coffee @@ -0,0 +1,4 @@ +gulp.task 'minify-prod-html', -> + gulp.src 'output_prod/**/*.html' + .pipe plugins.htmlmin config.htmlmin + .pipe gulp.dest 'output_prod'