From ff7bba4dad0d11f664fa4d36584332534fba430e Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sat, 21 Nov 2015 00:10:20 +0100 Subject: [PATCH] minify inline js & css --- gulpfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 9d2fd43f..c47e3ffc 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -105,6 +105,7 @@ var BANNER = [ '' ].join('\n'); + // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ // Tasks // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -154,7 +155,9 @@ gulp.task('html', function() { useShortDoctype: true, collapseBooleanAttributes: true, removeRedundantAttributes: true, - removeEmptyAttributes: true + removeEmptyAttributes: true, + minifyJS: true, + minifyCSS: true }))) .pipe(gulp.dest(DIST)) });