From 15f3882637266b07bc6c5f986632253d869060c1 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Thu, 20 Mar 2014 22:09:54 +0400 Subject: [PATCH] Fixed gulpfile --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 09556967..07c0383d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -136,12 +136,12 @@ gulp.task('add-appcache-manifest', function() { gulp.task('clean', function() { - return gulp.src(['dist/*', '!dist/.git']).pipe($.clean()); + return gulp.src(['dist/*', 'app/js/templates.js', '!dist/.git']).pipe($.clean()); }); gulp.task('bump', ['update-version-manifests', 'update-version-settings', 'update-version-comments']); -gulp.task('build', ['usemin', 'copy', 'imagemin'], function () { +gulp.task('build', ['usemin', 'copy', 'copy-images'], function () { gulp.start('disable-production'); }); gulp.task('package', ['cleanup-dist']);