Skip to content

Commit

Permalink
fixed dist task
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevercoelen committed Dec 21, 2015
1 parent 89abab4 commit f193ed4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/gulp/tasks/dist.js
Expand Up @@ -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);
});
});
2 changes: 1 addition & 1 deletion templates/gulp/tasks/html.js
Expand Up @@ -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'));
Expand Down

0 comments on commit f193ed4

Please sign in to comment.