From f193ed4893eea9c9bc4cbad10f269c27ac03a9f6 Mon Sep 17 00:00:00 2001 From: Tom Grooffer Date: Mon, 21 Dec 2015 17:34:04 +0100 Subject: [PATCH] fixed dist task --- templates/gulp/tasks/dist.js | 2 +- templates/gulp/tasks/html.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/gulp/tasks/dist.js b/templates/gulp/tasks/dist.js index 6cdf40e..ffe5e84 100644 --- a/templates/gulp/tasks/dist.js +++ b/templates/gulp/tasks/dist.js @@ -5,7 +5,7 @@ var gutil = require('gulp-util'); gulp.task('dist', function (callback) { gutil.env.production = true; - runSequence('clean', ['scripts:dist', 'styles:dist'], 'html', function () { + runSequence('clean', ['scripts:dist', 'styles:dist'], 'html:dist', function () { runSequence('clean:post-dist', ['copy'], callback); }); }); diff --git a/templates/gulp/tasks/html.js b/templates/gulp/tasks/html.js index a16c06c..ff61d4e 100644 --- a/templates/gulp/tasks/html.js +++ b/templates/gulp/tasks/html.js @@ -29,7 +29,7 @@ gulp.task('html:dist', ['html'], function () { comments: false, conditionals: false, spare: false, - quotes: false, + quotes: true, loose: false })) .pipe(gulp.dest('target/dist'));