@dxos/graph 0.8.4-main.d05539e30a → 0.8.4-main.d9fc60f731

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/graph",
3
- "version": "0.8.4-main.d05539e30a",
3
+ "version": "0.8.4-main.d9fc60f731",
4
4
  "description": "Low-level graph API",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -27,20 +27,18 @@
27
27
  ],
28
28
  "dependencies": {
29
29
  "@effect-atom/atom-react": "^0.5.0",
30
- "@dxos/async": "0.8.4-main.d05539e30a",
31
- "@dxos/debug": "0.8.4-main.d05539e30a",
32
- "@dxos/invariant": "0.8.4-main.d05539e30a",
33
- "@dxos/util": "0.8.4-main.d05539e30a",
34
- "@dxos/log": "0.8.4-main.d05539e30a"
30
+ "@dxos/async": "0.8.4-main.d9fc60f731",
31
+ "@dxos/invariant": "0.8.4-main.d9fc60f731",
32
+ "@dxos/util": "0.8.4-main.d9fc60f731",
33
+ "@dxos/debug": "0.8.4-main.d9fc60f731"
35
34
  },
36
35
  "devDependencies": {
37
- "effect": "3.20.0",
38
- "@dxos/echo": "0.8.4-main.d05539e30a",
39
- "@dxos/echo-db": "0.8.4-main.d05539e30a",
40
- "@dxos/random": "0.8.4-main.d05539e30a"
36
+ "effect": "3.21.2",
37
+ "@dxos/echo": "0.8.4-main.d9fc60f731",
38
+ "@dxos/random": "0.8.4-main.d9fc60f731"
41
39
  },
42
40
  "peerDependencies": {
43
- "effect": "3.20.0"
41
+ "effect": "3.21.2"
44
42
  },
45
43
  "publishConfig": {
46
44
  "access": "public"
package/src/GraphModel.ts CHANGED
@@ -433,7 +433,6 @@ export class ReactiveGraphModel<
433
433
 
434
434
  // Prime the atom by reading before subscribing to avoid double-fire on first mutation.
435
435
  this._registry.get(this._graphAtom);
436
-
437
436
  return this._registry.subscribe(this._graphAtom, () => {
438
437
  cb(this, this.graph);
439
438
  });