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 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
@@ -1,4 +1,4 @@
1
- import Socket from '@startupjs/channel'
1
+ import Socket from '@teamplay/channel'
2
2
  import Connection from './sharedbConnection.cjs'
3
3
  import { connection, setConnection } from '../orm/connection.js'
4
4
 
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 '@startupjs/signals-orm/connect'
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",
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.3",
26
- "@teamplay/channel": "^0.1.3",
27
- "@teamplay/debug": "^0.1.3",
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": "e0ed8221ff2e4691a2990813d5f07e128b11ab7a"
61
+ "gitHead": "3c6c4f6dd9fcfaa4e2a7f28c5ce989e6f7c4b133"
62
62
  }
package/server.js CHANGED
@@ -1,4 +1,4 @@
1
- import createChannel from '@startupjs/channel/server'
1
+ import createChannel from '@teamplay/channel/server'
2
2
  import { connection, setConnection, setFetchOnly } from './orm/connection.js'
3
3
 
4
4
  export { default as ShareDB } from 'sharedb'