teamplay 0.4.0-alpha.87 → 0.4.0-alpha.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/orm/rootScope.js +0 -1
- package/package.json +2 -2
package/orm/rootScope.js
CHANGED
|
@@ -26,7 +26,6 @@ export function getLogicalRootSnapshot (rootId, tree, privateDataRoot) {
|
|
|
26
26
|
for (const key of Object.keys(tree)) {
|
|
27
27
|
snapshot[key] = tree[key]
|
|
28
28
|
}
|
|
29
|
-
if (!rootId || isGlobalRootId(rootId)) return snapshot
|
|
30
29
|
if (!privateDataRoot || typeof privateDataRoot !== 'object') return snapshot
|
|
31
30
|
for (const key of Object.keys(privateDataRoot)) {
|
|
32
31
|
snapshot[key] = privateDataRoot[key]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "teamplay",
|
|
3
|
-
"version": "0.4.0-alpha.
|
|
3
|
+
"version": "0.4.0-alpha.88",
|
|
4
4
|
"description": "Full-stack signals ORM with multiplayer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
]
|
|
84
84
|
},
|
|
85
85
|
"license": "MIT",
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "201887a2436f937429d1900f92f0e5cd4c20fe5c"
|
|
87
87
|
}
|