From 613c5f11a6e769807b4c633dcf4028b7d11c8f67 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 19 Oct 2016 19:29:36 +0100 Subject: [PATCH] Tidy Gulpfile --- gulpfile.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 19856e79..f6117dd9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -91,11 +91,3 @@ gulp.task('watch', function() { gulp.task('build', ['clean', 'fonts', 'styles', 'scripts']); gulp.task('default', ['build', 'watch']); - -gulp.task('minify-prod-html', function() { - return gulp.src('output_prod/**/*.html') - .pipe(plugins.htmlmin({ - collapseWhitespace: true - })) - .pipe(gulp.dest('output_prod')); -});