From 0eed06f1d24c260038bee8c9d15295776029995d Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Sun, 6 Jul 2014 18:19:44 +0400 Subject: [PATCH] Fixed make package --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 738a8f3e..1115559a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -62,7 +62,7 @@ gulp.task('copy', function() { ); }); -gulp.task('compress-dist', function() { +gulp.task('compress-dist', ['build'], function() { return gulp.src('**/*', {cwd: path.join(process.cwd(), '/dist')}) .pipe($.zip('webogram_v' + pj.version + '.zip')) .pipe(gulp.dest('releases'));