diff --git a/dist b/dist index a286162a..64044123 160000 --- a/dist +++ b/dist @@ -1 +1 @@ -Subproject commit a286162ace008e91f8922ddd1dbc8a375342c099 +Subproject commit 64044123e3fac670fee6294eb471c5f4214103ab diff --git a/gulpfile.helper.js b/gulpfile.helper.js index b57b0dae..9950a18a 100644 --- a/gulpfile.helper.js +++ b/gulpfile.helper.js @@ -145,7 +145,7 @@ module.exports = function (gulp, helperOptions) { }) gulp.task('publish_commits', function (cb) { - gulp.src('./package.json') + return gulp.src('./package.json') .pipe($.prompt.confirm({ message: 'Are you sure you want to publish this release?', default: false @@ -176,6 +176,6 @@ module.exports = function (gulp, helperOptions) { gulp.task('publish', function (cb) { /* TODO: include 'test',*/ - runSequence('updateSubmodule', 'bump', 'dist', 'publish_commits', cb) + return runSequence('updateSubmodule', 'bump', 'dist', 'publish_commits', cb) }) } diff --git a/package.json b/package.json index 885992ab..fb0180af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "yjs", - "version": "0.8.25", + "version": "0.8.26", "description": "A framework for real-time p2p shared editing on arbitrary complex data types", "main": "./src/y.js", "scripts": {