From 579fd524550516e435c82a6d45f3f2c762109492 Mon Sep 17 00:00:00 2001 From: Kevin Jahns <kevin.jahns@rwth-aachen.de> Date: Sat, 9 Jan 2016 21:08:02 +0100 Subject: [PATCH] publish v0.7.3 --- .vscode/launch.json | 2 +- dist | 2 +- package.json | 4 ++-- src/Transaction.js | 1 + 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index f5f0d3e1..ad0153dd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,7 +7,7 @@ "request": "launch", "program": "node_modules/gulp/bin/gulp.js", "stopOnEntry": false, - "args": ["test"], + "args": ["dev:examples"], "cwd": ".", "runtimeExecutable": null, "runtimeArgs": [ diff --git a/dist b/dist index ab6a193e..4cb0f2b5 160000 --- a/dist +++ b/dist @@ -1 +1 @@ -Subproject commit ab6a193ec6ec799bdb77fa23eeec1f05d5b910d6 +Subproject commit 4cb0f2b5b9293b521db173f01263e6f9d1a8e6d1 diff --git a/package.json b/package.json index f947b6e3..e9265656 100644 --- a/package.json +++ b/package.json @@ -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" diff --git a/src/Transaction.js b/src/Transaction.js index 68533c1e..b3837fbe 100644 --- a/src/Transaction.js +++ b/src/Transaction.js @@ -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) } } -- GitLab