Release 0.8.22

This commit is contained in:
Kevin Jahns 2016-02-22 12:38:26 +01:00
parent 429c1f83c1
commit 339590f49e
3 changed files with 10 additions and 8 deletions

2
dist

@ -1 +1 @@
Subproject commit 81324dc7d438d2744e5020cec2c8a39baebfe5a6 Subproject commit f2052f95f8e4513935bf3a3c77510cfe98ff7a47

View File

@ -144,16 +144,14 @@ module.exports = function (gulp, helperOptions) {
.pipe(gulp.dest('./')) .pipe(gulp.dest('./'))
}) })
gulp.task('publish', function (cb) { gulp.task('publish_commits', function (cb) {
/* TODO: include 'test',*/ return gulp.src('./package.json', {read: false})
runSequence('updateSubmodule', 'dist', 'bump', function () {
return gulp.src('./package.json', {read: false})
.pipe($.prompt.confirm({ .pipe($.prompt.confirm({
message: 'Are you sure you want to publish this release?', message: 'Are you sure you want to publish this release?',
default: false default: false
})) }))
.pipe($.shell([ .pipe($.shell([
// 'cp README.md dist', 'cp README.md dist',
'standard', 'standard',
'echo "Deploying version <%= getVersion(file.path) %>"', 'echo "Deploying version <%= getVersion(file.path) %>"',
'git pull', 'git pull',
@ -174,6 +172,10 @@ module.exports = function (gulp, helperOptions) {
callback: cb callback: cb
} }
})) }))
}) })
gulp.task('publish', function (cb) {
/* TODO: include 'test',*/
runSequence('updateSubmodule', 'bump', 'dist', 'publish_commits', cb)
}) })
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "yjs", "name": "yjs",
"version": "0.8.22", "version": "0.8.23",
"description": "A framework for real-time p2p shared editing on arbitrary complex data types", "description": "A framework for real-time p2p shared editing on arbitrary complex data types",
"main": "./src/y.js", "main": "./src/y.js",
"scripts": { "scripts": {