teamplay 0.1.1 → 0.1.2
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/CHANGELOG.md +12 -0
- package/cache.js +1 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.1.2 (Thu May 23 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: re-export cache as 'teamplay/cache' ([@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.1 (Thu May 23 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/cache.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@teamplay/cache'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "teamplay",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Full-stack signals ORM with multiplayer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@nx-js/observer-util": "^4.1.3",
|
|
25
|
-
"@teamplay/cache": "^0.1.
|
|
26
|
-
"@teamplay/channel": "^0.1.
|
|
27
|
-
"@teamplay/debug": "^0.1.
|
|
25
|
+
"@teamplay/cache": "^0.1.2",
|
|
26
|
+
"@teamplay/channel": "^0.1.2",
|
|
27
|
+
"@teamplay/debug": "^0.1.2",
|
|
28
28
|
"diff-match-patch": "^1.0.5",
|
|
29
29
|
"json0-ot-diff": "^1.1.2",
|
|
30
30
|
"lodash": "^4.17.20",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
]
|
|
58
58
|
},
|
|
59
59
|
"license": "MIT",
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "8971fcab3116436109f9dc78417931aee4e2ed1d"
|
|
61
61
|
}
|