mirror of
https://github.com/yjs/yjs.git
synced 2025-12-29 00:25:01 +01:00
Release 0.8.27
This commit is contained in:
2
dist
2
dist
Submodule dist updated: 64044123e3...f75f47646b
@@ -144,7 +144,7 @@ module.exports = function (gulp, helperOptions) {
|
||||
.pipe(gulp.dest('./'))
|
||||
})
|
||||
|
||||
gulp.task('publish_commits', function (cb) {
|
||||
gulp.task('publish_commits', function () {
|
||||
return gulp.src('./package.json')
|
||||
.pipe($.prompt.confirm({
|
||||
message: 'Are you sure you want to publish this release?',
|
||||
@@ -163,19 +163,18 @@ module.exports = function (gulp, helperOptions) {
|
||||
'git commit -am "Release <%= getVersion(file.path) %>" -n',
|
||||
'git push',
|
||||
'npm publish',
|
||||
'echo Finished <%= callback() %>'
|
||||
'echo Finished'
|
||||
], {
|
||||
templateData: {
|
||||
getVersion: function () {
|
||||
return JSON.parse(String.fromCharCode.apply(null, this.file._contents)).version
|
||||
},
|
||||
callback: cb
|
||||
}
|
||||
}
|
||||
}))
|
||||
})
|
||||
|
||||
gulp.task('publish', function (cb) {
|
||||
/* TODO: include 'test',*/
|
||||
return runSequence('updateSubmodule', 'bump', 'dist', 'publish_commits', cb)
|
||||
runSequence('updateSubmodule', 'bump', 'dist', 'publish_commits', cb)
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "yjs",
|
||||
"version": "0.8.26",
|
||||
"version": "0.8.27",
|
||||
"description": "A framework for real-time p2p shared editing on arbitrary complex data types",
|
||||
"main": "./src/y.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user