@noya-app/noya-multiplayer-react 0.1.77 → 0.1.78
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 +9 -0
- package/dist/index.bundle.js +28 -28
- package/dist/index.d.mts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +672 -210
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +649 -187
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/inspector/StateInspector.tsx +77 -37
- package/src/inspector/sections/GitSection.tsx +500 -0
- package/src/noyaApp.ts +9 -0
- package/src/singleton.tsx +2 -0
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[32m645.49 KB[39m
|
|
11
|
+
[32mCJS[39m ⚡️ Build success in 295ms
|
|
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
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
|
20
|
-
[32mCJS[39m [1mdist/index.js.map [22m[
|
|
21
|
-
[32mCJS[39m ⚡️ Build success in
|
|
22
|
-
[32mESM[39m [1mdist/index.mjs [22m[
|
|
23
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[
|
|
24
|
-
[32mESM[39m ⚡️ Build success in
|
|
19
|
+
[32mCJS[39m [1mdist/index.js [22m[32m310.26 KB[39m
|
|
20
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m674.88 KB[39m
|
|
21
|
+
[32mCJS[39m ⚡️ Build success in 192ms
|
|
22
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m300.99 KB[39m
|
|
23
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m674.22 KB[39m
|
|
24
|
+
[32mESM[39m ⚡️ Build success in 207ms
|
|
25
25
|
DTS Build start
|
|
26
|
-
DTS ⚡️ Build success in
|
|
27
|
-
DTS dist/index.d.ts
|
|
28
|
-
DTS dist/index.d.mts
|
|
26
|
+
DTS ⚡️ Build success in 4392ms
|
|
27
|
+
DTS dist/index.d.ts 27.21 KB
|
|
28
|
+
DTS dist/index.d.mts 27.21 KB
|
package/CHANGELOG.md
CHANGED