@tldraw/sync-core 4.6.0-next.793daa9fe264 → 4.6.0-next.a31a8a6b83f2
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/dist-cjs/index.js +1 -1
- package/dist-esm/index.mjs +1 -1
- package/package.json +6 -6
- package/src/test/syncFuzz.test.ts +4 -0
package/dist-cjs/index.js
CHANGED
|
@@ -61,7 +61,7 @@ var import_TLSyncRoom = require("./lib/TLSyncRoom");
|
|
|
61
61
|
var import_TLSyncStorage = require("./lib/TLSyncStorage");
|
|
62
62
|
(0, import_utils.registerTldrawLibraryVersion)(
|
|
63
63
|
"@tldraw/sync-core",
|
|
64
|
-
"4.6.0-next.
|
|
64
|
+
"4.6.0-next.a31a8a6b83f2",
|
|
65
65
|
"cjs"
|
|
66
66
|
);
|
|
67
67
|
//# sourceMappingURL=index.js.map
|
package/dist-esm/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tldraw/sync-core",
|
|
3
3
|
"description": "tldraw infinite canvas SDK (multiplayer sync).",
|
|
4
|
-
"version": "4.6.0-next.
|
|
4
|
+
"version": "4.6.0-next.a31a8a6b83f2",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "tldraw GB Ltd.",
|
|
7
7
|
"email": "hello@tldraw.com"
|
|
@@ -48,17 +48,17 @@
|
|
|
48
48
|
"@types/uuid-readable": "^0.0.3",
|
|
49
49
|
"react": "^19.2.1",
|
|
50
50
|
"react-dom": "^19.2.1",
|
|
51
|
-
"tldraw": "4.6.0-next.
|
|
51
|
+
"tldraw": "4.6.0-next.a31a8a6b83f2",
|
|
52
52
|
"typescript": "^5.8.3",
|
|
53
53
|
"uuid-by-string": "^4.0.0",
|
|
54
54
|
"uuid-readable": "^0.0.2",
|
|
55
55
|
"vitest": "^3.2.4"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@tldraw/state": "4.6.0-next.
|
|
59
|
-
"@tldraw/store": "4.6.0-next.
|
|
60
|
-
"@tldraw/tlschema": "4.6.0-next.
|
|
61
|
-
"@tldraw/utils": "4.6.0-next.
|
|
58
|
+
"@tldraw/state": "4.6.0-next.a31a8a6b83f2",
|
|
59
|
+
"@tldraw/store": "4.6.0-next.a31a8a6b83f2",
|
|
60
|
+
"@tldraw/tlschema": "4.6.0-next.a31a8a6b83f2",
|
|
61
|
+
"@tldraw/utils": "4.6.0-next.a31a8a6b83f2",
|
|
62
62
|
"nanoevents": "^7.0.1",
|
|
63
63
|
"ws": "^8.18.0"
|
|
64
64
|
},
|
|
@@ -290,6 +290,10 @@ test('seed 5279266392988747 - undo/redo page integrity regression', () => {
|
|
|
290
290
|
runTest(5279266392988747)
|
|
291
291
|
})
|
|
292
292
|
|
|
293
|
+
test('seed 8090628137862085 - duplicate index key regression', () => {
|
|
294
|
+
runTest(8090628137862085)
|
|
295
|
+
})
|
|
296
|
+
|
|
293
297
|
for (let i = 0; i < NUM_TESTS; i++) {
|
|
294
298
|
const seed = Math.floor(Math.random() * Number.MAX_SAFE_INTEGER)
|
|
295
299
|
test(`seed ${seed}`, () => {
|