teamplay 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v0.1.3 (Thu May 23 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix: add 'events' since sharedb client requires it to work correctly ([@cray0000](https://github.com/cray0000))
6
+
7
+ #### Authors: 1
8
+
9
+ - Pavel Zhukov ([@cray0000](https://github.com/cray0000))
10
+
11
+ ---
12
+
1
13
  # v0.1.2 (Thu May 23 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "teamplay",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Full-stack signals ORM with multiplayer",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -22,10 +22,11 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@nx-js/observer-util": "^4.1.3",
25
- "@teamplay/cache": "^0.1.2",
26
- "@teamplay/channel": "^0.1.2",
27
- "@teamplay/debug": "^0.1.2",
25
+ "@teamplay/cache": "^0.1.3",
26
+ "@teamplay/channel": "^0.1.3",
27
+ "@teamplay/debug": "^0.1.3",
28
28
  "diff-match-patch": "^1.0.5",
29
+ "events": "^3.3.0",
29
30
  "json0-ot-diff": "^1.1.2",
30
31
  "lodash": "^4.17.20",
31
32
  "sharedb": "^5.0.0",
@@ -57,5 +58,5 @@
57
58
  ]
58
59
  },
59
60
  "license": "MIT",
60
- "gitHead": "8971fcab3116436109f9dc78417931aee4e2ed1d"
61
+ "gitHead": "e0ed8221ff2e4691a2990813d5f07e128b11ab7a"
61
62
  }