From 4cf02d4184832d17d9c8f3344198929f4f7366be Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Sat, 22 Mar 2014 12:56:32 +0300 Subject: [PATCH] Fixed package zip, CSP --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 07c0383d..a81ed526 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -63,7 +63,7 @@ gulp.task('copy', function() { }); gulp.task('compress-dist', ['add-csp'], function() { - return gulp.src('dist/**/*') + return gulp.src('./**/*' , {cwd: process.cwd() + '/dist'}) .pipe($.zip('webogram_v' + pj.version + '.zip')) .pipe(gulp.dest('releases')); }); @@ -74,7 +74,7 @@ gulp.task('cleanup-dist', ['compress-dist'], function() { gulp.task('add-csp', ['build'], function() { return gulp.src('dist/index.html') - .pipe($.replace('', '')) + .pipe($.replace(//, '')) .pipe(gulp.dest('dist')); });