@noya-app/noya-multiplayer-react 0.1.71 → 0.1.72
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/.turbo/turbo-build.log +11 -11
- package/CHANGELOG.md +16 -0
- package/dist/index.bundle.js +42 -26
- package/dist/index.d.mts +69 -49
- package/dist/index.d.ts +69 -49
- package/dist/index.js +475 -253
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +418 -203
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/NoyaStateContext.tsx +148 -97
- package/src/__tests__/noyaApp.test.ts +6 -0
- package/src/__tests__/resourcePayload.test.ts +24 -134
- package/src/components/UserPointersOverlay.tsx +18 -16
- package/src/hooks.ts +19 -12
- package/src/inspector/StateInspector.tsx +84 -36
- package/src/inspector/sections/ServerScriptLogsSection.tsx +128 -0
- package/src/inspector/serialization.ts +4 -2
- package/src/inspector/useStateInspector.tsx +2 -1
- package/src/noyaApp.ts +78 -20
- package/src/singleton.tsx +33 -9
package/.turbo/turbo-build.log
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
[34mCLI[39m Using tsup config: /Users/devinabbott/Projects/noya-core/packages/noya-multiplayer-react/bundle.config.ts
|
|
8
8
|
[34mCLI[39m Target: es2022
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
|
-
[32mCJS[39m [1mdist/index.bundle.js [22m[
|
|
11
|
-
[32mCJS[39m ⚡️ Build success in
|
|
10
|
+
[32mCJS[39m [1mdist/index.bundle.js [22m[32m610.89 KB[39m
|
|
11
|
+
[32mCJS[39m ⚡️ Build success in 100ms
|
|
12
12
|
[0m[2m[35m$[0m [2m[1mtsup src/index.ts --format cjs,esm --dts --sourcemap[0m
|
|
13
13
|
[34mCLI[39m Building entry: src/index.ts
|
|
14
14
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
[34mCLI[39m Target: esnext
|
|
17
17
|
[34mCJS[39m Build start
|
|
18
18
|
[34mESM[39m Build start
|
|
19
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m282.15 KB[39m
|
|
20
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m638.85 KB[39m
|
|
21
|
+
[32mESM[39m ⚡️ Build success in 113ms
|
|
22
|
+
[32mCJS[39m [1mdist/index.js [22m[32m290.43 KB[39m
|
|
23
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m639.61 KB[39m
|
|
24
|
+
[32mCJS[39m ⚡️ Build success in 114ms
|
|
19
25
|
DTS Build start
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m275.82 KB[39m
|
|
24
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m625.22 KB[39m
|
|
25
|
-
[32mESM[39m ⚡️ Build success in 542ms
|
|
26
|
-
DTS ⚡️ Build success in 8137ms
|
|
27
|
-
DTS dist/index.d.ts 24.43 KB
|
|
28
|
-
DTS dist/index.d.mts 24.43 KB
|
|
26
|
+
DTS ⚡️ Build success in 3692ms
|
|
27
|
+
DTS dist/index.d.ts 26.72 KB
|
|
28
|
+
DTS dist/index.d.mts 26.72 KB
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @noya-app/state-manager
|
|
2
2
|
|
|
3
|
+
## 0.1.72
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 34db3e1: Shared connection data
|
|
8
|
+
- efb58f9: Bump
|
|
9
|
+
- cd0b23b: Input queues
|
|
10
|
+
- 8b37ab1: Transcription
|
|
11
|
+
- bd5ae5b: Bump
|
|
12
|
+
- Updated dependencies [34db3e1]
|
|
13
|
+
- Updated dependencies [efb58f9]
|
|
14
|
+
- Updated dependencies [cd0b23b]
|
|
15
|
+
- Updated dependencies [8b37ab1]
|
|
16
|
+
- Updated dependencies [bd5ae5b]
|
|
17
|
+
- @noya-app/state-manager@0.1.58
|
|
18
|
+
|
|
3
19
|
## 0.1.71
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|