Fixed gulpfile

This commit is contained in:
Igor Zhukov 2014-03-20 22:09:54 +04:00
parent 36eaccf950
commit 15f3882637

View File

@ -136,12 +136,12 @@ gulp.task('add-appcache-manifest', function() {
gulp.task('clean', 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('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.start('disable-production');
}); });
gulp.task('package', ['cleanup-dist']); gulp.task('package', ['cleanup-dist']);