@noya-app/noya-multiplayer-react 0.1.30 → 0.1.32
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 +12 -0
- package/bundle.config.ts +0 -1
- package/dist/index.bundle.js +7 -7
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +10 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/noyaApp.ts +16 -6
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[32m200.
|
|
10
|
-
[32mCJS[39m ⚡️ Build success in
|
|
9
|
+
[32mCJS[39m [1mdist/index.bundle.js [22m[32m200.76 KB[39m
|
|
10
|
+
[32mCJS[39m ⚡️ Build success in 202ms
|
|
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
|
-
[
|
|
19
|
-
[
|
|
20
|
-
[
|
|
21
|
-
[
|
|
22
|
-
[
|
|
23
|
-
[
|
|
18
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m45.29 KB[39m
|
|
19
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m82.89 KB[39m
|
|
20
|
+
[32mESM[39m ⚡️ Build success in 59ms
|
|
21
|
+
[32mCJS[39m [1mdist/index.js [22m[32m50.86 KB[39m
|
|
22
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m82.63 KB[39m
|
|
23
|
+
[32mCJS[39m ⚡️ Build success in 59ms
|
|
24
24
|
[34mDTS[39m Build start
|
|
25
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
|
|
27
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m7.
|
|
28
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m7.
|
|
26
|
+
[32mDTS[39m ⚡️ Build success in 3254ms
|
|
27
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m7.45 KB[39m
|
|
28
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m7.45 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @noya-app/state-manager
|
|
2
2
|
|
|
3
|
+
## 0.1.32
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 31f1d0a: Enable software rendering for canvaskit
|
|
8
|
+
|
|
9
|
+
## 0.1.31
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- b022ce3: Improve standalone component usage. Don't save to localStorage by default
|
|
14
|
+
|
|
3
15
|
## 0.1.30
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|