@noya-app/noya-multiplayer-react 0.1.54 → 0.1.55
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 -22
- package/CHANGELOG.md +11 -0
- package/dist/index.bundle.js +24 -13
- package/dist/index.d.mts +18 -9
- package/dist/index.d.ts +18 -9
- package/dist/index.js +363 -154
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +364 -155
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/NoyaStateContext.tsx +4 -0
- package/src/components/UserPointersOverlay.tsx +16 -7
- package/src/hooks.ts +8 -5
- package/src/inspector/StateInspector.tsx +45 -35
package/.turbo/turbo-build.log
CHANGED
|
@@ -7,19 +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
|
-
|
|
11
|
-
[
|
|
12
|
-
|
|
13
|
-
../state-manager/src/NoyaManager.ts:123:30:
|
|
14
|
-
[37m 123 │ const mutator = [32meval[37m(
|
|
15
|
-
╵ [32m~~~~[0m
|
|
16
|
-
|
|
17
|
-
You can read more about direct eval and bundling here: [4mhttps://esbuild.github.io/link/direct-eval[0m
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
[32mCJS[39m [1mdist/index.bundle.js [22m[32m278.72 KB[39m
|
|
22
|
-
[32mCJS[39m ⚡️ Build success in 164ms
|
|
10
|
+
[32mCJS[39m [1mdist/index.bundle.js [22m[32m287.52 KB[39m
|
|
11
|
+
[32mCJS[39m ⚡️ Build success in 67ms
|
|
23
12
|
[0m[2m[35m$[0m [2m[1mtsup src/index.ts --format cjs,esm --dts --sourcemap[0m
|
|
24
13
|
[34mCLI[39m Building entry: src/index.ts
|
|
25
14
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
@@ -27,13 +16,13 @@
|
|
|
27
16
|
[34mCLI[39m Target: esnext
|
|
28
17
|
[34mCJS[39m Build start
|
|
29
18
|
[34mESM[39m Build start
|
|
30
|
-
[
|
|
31
|
-
[
|
|
32
|
-
[
|
|
33
|
-
[
|
|
34
|
-
[
|
|
35
|
-
[
|
|
19
|
+
[32mCJS[39m [1mdist/index.js [22m[32m215.26 KB[39m
|
|
20
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m483.41 KB[39m
|
|
21
|
+
[32mCJS[39m ⚡️ Build success in 103ms
|
|
22
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m209.80 KB[39m
|
|
23
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m483.11 KB[39m
|
|
24
|
+
[32mESM[39m ⚡️ Build success in 104ms
|
|
36
25
|
DTS Build start
|
|
37
|
-
DTS ⚡️ Build success in
|
|
38
|
-
DTS dist/index.d.ts 17.
|
|
39
|
-
DTS dist/index.d.mts 17.
|
|
26
|
+
DTS ⚡️ Build success in 5429ms
|
|
27
|
+
DTS dist/index.d.ts 17.44 KB
|
|
28
|
+
DTS dist/index.d.mts 17.44 KB
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @noya-app/state-manager
|
|
2
2
|
|
|
3
|
+
## 0.1.55
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a7cf080: Bump packages
|
|
8
|
+
- Updated dependencies [a7cf080]
|
|
9
|
+
- @noya-app/react-utils@0.1.18
|
|
10
|
+
- @noya-app/state-manager@0.1.44
|
|
11
|
+
- @noya-app/task-runner@0.1.6
|
|
12
|
+
- @noya-app/observable@0.1.6
|
|
13
|
+
|
|
3
14
|
## 0.1.54
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|