@noya-app/noya-multiplayer-react 0.1.82 → 0.1.84
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 +13 -0
- package/dist/index.bundle.js +24 -24
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/inspector/StateInspector.test.tsx +18 -0
- package/src/inspector/StateInspector.tsx +3 -1
- package/src/inspector/useStateInspector.tsx +4 -1
- package/src/singleton.tsx +5 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,8 +6,8 @@ $ tsup src/index.ts --config bundle.config.ts
|
|
|
6
6
|
[34mCLI[39m Using tsup config: /home/runner/work/noya-core/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[32m661.63 KB[39m
|
|
10
|
+
[32mCJS[39m ⚡️ Build success in 1636ms
|
|
11
11
|
$ tsup src/index.ts --format cjs,esm --dts --sourcemap
|
|
12
12
|
[34mCLI[39m Building entry: src/index.ts
|
|
13
13
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
@@ -15,13 +15,13 @@ $ tsup src/index.ts --format cjs,esm --dts --sourcemap
|
|
|
15
15
|
[34mCLI[39m Target: esnext
|
|
16
16
|
[34mCJS[39m Build start
|
|
17
17
|
[34mESM[39m Build start
|
|
18
|
-
[32mCJS[39m [1mdist/index.js [22m[32m310.45 KB[39m
|
|
19
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m675.09 KB[39m
|
|
20
|
-
[32mCJS[39m ⚡️ Build success in 1647ms
|
|
21
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m301.14 KB[39m
|
|
22
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m674.43 KB[39m
|
|
23
|
-
[32mESM[39m ⚡️ Build success in 1648ms
|
|
24
18
|
[34mDTS[39m Build start
|
|
25
|
-
[
|
|
26
|
-
[
|
|
27
|
-
[
|
|
19
|
+
[32mCJS[39m [1mdist/index.js [22m[32m310.67 KB[39m
|
|
20
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m675.53 KB[39m
|
|
21
|
+
[32mCJS[39m ⚡️ Build success in 1751ms
|
|
22
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m301.35 KB[39m
|
|
23
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m674.87 KB[39m
|
|
24
|
+
[32mESM[39m ⚡️ Build success in 1792ms
|
|
25
|
+
[32mDTS[39m ⚡️ Build success in 35993ms
|
|
26
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m27.40 KB[39m
|
|
27
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m27.40 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @noya-app/state-manager
|
|
2
2
|
|
|
3
|
+
## 0.1.84
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5f7ae92: Update packages
|
|
8
|
+
|
|
9
|
+
## 0.1.83
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [8413711]
|
|
14
|
+
- @noya-app/state-manager@0.1.66
|
|
15
|
+
|
|
3
16
|
## 0.1.82
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|