@sqlrooms/crdt 0.27.0-rc.0 → 0.27.0-rc.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/README.md +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ const {roomStore, useRoomStore} = createRoomStore(
|
|
|
42
42
|
sync: createWebSocketSyncConnector({
|
|
43
43
|
url: 'ws://localhost:4800',
|
|
44
44
|
roomId: 'demo-room',
|
|
45
|
-
// If your server sends a snapshot on join (like sqlrooms-
|
|
45
|
+
// If your server sends a snapshot on join (like sqlrooms-server),
|
|
46
46
|
// prefer updates-only to avoid re-sending full snapshots on reconnects.
|
|
47
47
|
sendSnapshotOnConnect: false,
|
|
48
48
|
// Still seed an empty server once after join (important if you load initial
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sqlrooms/crdt",
|
|
3
|
-
"version": "0.27.0-rc.
|
|
3
|
+
"version": "0.27.0-rc.2",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"typecheck": "tsc --noEmit",
|
|
42
42
|
"typedoc": "typedoc"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "eec06537352a9e760de21d7bcc77d9aa2db2a5ec"
|
|
45
45
|
}
|