@noya-app/noya-multiplayer-react 0.1.36 → 0.1.37
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 +12 -12
- package/CHANGELOG.md +9 -0
- package/dist/index.bundle.js +8 -8
- package/dist/index.d.mts +15 -11
- package/dist/index.d.ts +15 -11
- package/dist/index.js +77 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +77 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/hooks.ts +15 -2
- package/src/inspector/StateInspector.tsx +56 -1
- package/src/inspector/useStateInspector.tsx +16 -9
- package/src/noyaApp.ts +12 -12
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
[34mCLI[39m Using tsup config: /Users/devinabbott/Projects/noya-core/packages/noya-multiplayer-react/bundle.config.ts
|
|
7
7
|
[34mCLI[39m Target: es2022
|
|
8
8
|
[34mCJS[39m Build start
|
|
9
|
-
[32mCJS[39m [1mdist/index.bundle.js [22m[
|
|
10
|
-
[32mCJS[39m ⚡️ Build success in
|
|
9
|
+
[32mCJS[39m [1mdist/index.bundle.js [22m[32m224.71 KB[39m
|
|
10
|
+
[32mCJS[39m ⚡️ Build success in 62ms
|
|
11
11
|
[0m[2m[35m$[0m [2m[1mtsup src/index.ts --format cjs,esm --dts --sourcemap[0m
|
|
12
12
|
[34mCLI[39m Building entry: src/index.ts
|
|
13
13
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
[34mCLI[39m Target: esnext
|
|
16
16
|
[34mCJS[39m Build start
|
|
17
17
|
[34mESM[39m Build start
|
|
18
|
-
[32mESM[39m [1mdist/index.mjs [22m[
|
|
19
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[
|
|
20
|
-
[32mESM[39m ⚡️ Build success in
|
|
21
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
|
22
|
-
[32mCJS[39m [1mdist/index.js.map [22m[
|
|
23
|
-
[32mCJS[39m ⚡️ Build success in
|
|
18
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m47.52 KB[39m
|
|
19
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m88.34 KB[39m
|
|
20
|
+
[32mESM[39m ⚡️ Build success in 32ms
|
|
21
|
+
[32mCJS[39m [1mdist/index.js [22m[32m53.24 KB[39m
|
|
22
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m88.06 KB[39m
|
|
23
|
+
[32mCJS[39m ⚡️ Build success in 32ms
|
|
24
24
|
[34mDTS[39m Build start
|
|
25
|
-
"ComponentPropsWithoutRef" is imported from external module "react" but never used in "src/
|
|
26
|
-
[32mDTS[39m ⚡️ Build success in
|
|
27
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
28
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
|
25
|
+
"ComponentPropsWithoutRef" is imported from external module "react" but never used in "src/components/UserPointersOverlay.tsx", "src/inspector/StateInspector.tsx" and "src/hooks.ts".
|
|
26
|
+
[32mDTS[39m ⚡️ Build success in 2254ms
|
|
27
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m8.18 KB[39m
|
|
28
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m8.18 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @noya-app/state-manager
|
|
2
2
|
|
|
3
|
+
## 0.1.37
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8317129: Adjust asset API
|
|
8
|
+
- cd96eed: Rename useNoyaAppState to useNoyaState. Add assets API
|
|
9
|
+
- Updated dependencies [cd96eed]
|
|
10
|
+
- @noya-app/state-manager@0.1.28
|
|
11
|
+
|
|
3
12
|
## 0.1.36
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|