Release 0.8.22
This commit is contained in:
parent
429c1f83c1
commit
339590f49e
2
dist
2
dist
@ -1 +1 @@
|
|||||||
Subproject commit 81324dc7d438d2744e5020cec2c8a39baebfe5a6
|
Subproject commit f2052f95f8e4513935bf3a3c77510cfe98ff7a47
|
@ -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)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -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": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user