publish v0.7.3

This commit is contained in:
Kevin Jahns
2016-01-09 21:08:02 +01:00
parent 8cfc9d41c3
commit 579fd52455
4 changed files with 5 additions and 4 deletions

2
.vscode/launch.json vendored
View File

@@ -7,7 +7,7 @@
"request": "launch",
"program": "node_modules/gulp/bin/gulp.js",
"stopOnEntry": false,
"args": ["test"],
"args": ["dev:examples"],
"cwd": ".",
"runtimeExecutable": null,
"runtimeArgs": [

2
dist

Submodule dist updated: ab6a193ec6...4cb0f2b5b9

View File

@@ -1,8 +1,8 @@
{
"name": "yjs",
"version": "0.7.1",
"version": "0.7.3",
"description": "A framework for real-time p2p shared editing on arbitrary complex data types",
"main": "y.js",
"main": "./src/y.js",
"scripts": {
"test": "node --harmony ./node_modules/.bin/gulp test",
"lint": "./node_modules/.bin/standard"

View File

@@ -397,6 +397,7 @@ module.exports = function (Y/* :any */) {
if (i.right == null) {
break
} else {
ids.push(i.id)
i = yield* this.getOperation(i.right)
}
}