teamplay 0.1.3 → 0.1.4
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/connect/index.js +1 -1
- package/orm/connection.js +1 -1
- package/package.json +5 -5
- package/server.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.1.4 (Thu May 23 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: rename old references to startupjs packages into teamplay packages ([@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.3 (Thu May 23 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/connect/index.js
CHANGED
package/orm/connection.js
CHANGED
|
@@ -20,7 +20,7 @@ const ERRORS = {
|
|
|
20
20
|
You must set the initialized ShareDB connection before using subscriptions.
|
|
21
21
|
You've probably forgotten to call connect() in your app:
|
|
22
22
|
|
|
23
|
-
import connect from '
|
|
23
|
+
import connect from 'teamplay/connect'
|
|
24
24
|
connect({ baseUrl: 'http://localhost:3000' })
|
|
25
25
|
`
|
|
26
26
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "teamplay",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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.4",
|
|
26
|
+
"@teamplay/channel": "^0.1.4",
|
|
27
|
+
"@teamplay/debug": "^0.1.4",
|
|
28
28
|
"diff-match-patch": "^1.0.5",
|
|
29
29
|
"events": "^3.3.0",
|
|
30
30
|
"json0-ot-diff": "^1.1.2",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
60
|
"license": "MIT",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "3c6c4f6dd9fcfaa4e2a7f28c5ce989e6f7c4b133"
|
|
62
62
|
}
|
package/server.js
CHANGED