diff --git a/gulpfile.js b/gulpfile.js index 3a310e3df8..001b24df89 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -266,7 +266,7 @@ gulp.task('add', function () { }) // commit with current v# in manifest -gulp.task('commit', function () { +gulp.task('commit', ['getVersion'], function () { return gulp.src('*.js', {read: false}) .pipe(shell([ 'git commit -m "Rebuilt and cleaned everything. Done for now."' @@ -275,7 +275,7 @@ gulp.task('commit', function () { }) // commit with current v# in manifest -gulp.task('commitV', function () { +gulp.task('commitV', ['getVersion'], function () { return gulp.src('*.js', {read: false}) .pipe(shell([ 'git commit -m " ' + versionMsg + ' "' @@ -339,7 +339,7 @@ gulp.task('bump', function(cb) { runSequence('clean', 'bump-patch', gulp.task('cleanZip', function(cb) { runSequence('clean', 'zip', cb); }); -gulp.task('push', function(cb) { runSequence('add', 'commitV', 'tag', cb); }); +gulp.task('commit', function(cb) { runSequence('add', 'commitV', 'tag', cb); }); gulp.task('pushLive', function(cb) { runSequence('add', 'commitV', 'tag', 'push', 'pushLive', cb); }); diff --git a/releases/chrome-extension-v3.3.6.zip b/releases/chrome-extension-v3.3.6.zip index 54c379d38d..97c8f9b3f5 100644 Binary files a/releases/chrome-extension-v3.3.6.zip and b/releases/chrome-extension-v3.3.6.zip differ diff --git a/releases/dist-v3.3.6.zip b/releases/dist-v3.3.6.zip index c580e47ec5..fa1eecf6ca 100644 Binary files a/releases/dist-v3.3.6.zip and b/releases/dist-v3.3.6.zip differ