@noya-app/noya-multiplayer-react 0.1.80 → 0.1.82
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 +27 -28
- package/CHANGELOG.md +16 -0
- package/dist/index.bundle.js +22 -22
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/NoyaStateContext.tsx +5 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,28 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
[
|
|
4
|
-
[34mCLI[39m
|
|
5
|
-
[34mCLI[39m
|
|
6
|
-
[34mCLI[39m tsup
|
|
7
|
-
[34mCLI[39m
|
|
8
|
-
[
|
|
9
|
-
[
|
|
10
|
-
[32mCJS[39m
|
|
11
|
-
|
|
12
|
-
[
|
|
13
|
-
[34mCLI[39m
|
|
14
|
-
[34mCLI[39m
|
|
15
|
-
[34mCLI[39m
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
19
|
-
|
|
20
|
-
[
|
|
21
|
-
[32mESM[39m [1mdist/index.mjs
|
|
22
|
-
[32mESM[39m
|
|
23
|
-
[
|
|
24
|
-
[
|
|
25
|
-
[
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
DTS dist/index.d.mts 27.21 KB
|
|
1
|
+
$ bun run build:bundle && bun run build:main
|
|
2
|
+
$ tsup src/index.ts --config bundle.config.ts
|
|
3
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
4
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
5
|
+
[34mCLI[39m tsup v8.3.5
|
|
6
|
+
[34mCLI[39m Using tsup config: /home/runner/work/noya-core/noya-core/packages/noya-multiplayer-react/bundle.config.ts
|
|
7
|
+
[34mCLI[39m Target: es2022
|
|
8
|
+
[34mCJS[39m Build start
|
|
9
|
+
[32mCJS[39m [1mdist/index.bundle.js [22m[32m652.48 KB[39m
|
|
10
|
+
[32mCJS[39m ⚡️ Build success in 1594ms
|
|
11
|
+
$ tsup src/index.ts --format cjs,esm --dts --sourcemap
|
|
12
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
13
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
14
|
+
[34mCLI[39m tsup v8.3.5
|
|
15
|
+
[34mCLI[39m Target: esnext
|
|
16
|
+
[34mCJS[39m Build start
|
|
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
|
+
[34mDTS[39m Build start
|
|
25
|
+
[32mDTS[39m ⚡️ Build success in 31300ms
|
|
26
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m27.32 KB[39m
|
|
27
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m27.32 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @noya-app/state-manager
|
|
2
2
|
|
|
3
|
+
## 0.1.82
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 722c541: Update packages
|
|
8
|
+
- Updated dependencies [722c541]
|
|
9
|
+
- @noya-app/state-manager@0.1.65
|
|
10
|
+
|
|
11
|
+
## 0.1.81
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [ef15878]
|
|
16
|
+
- @noya-app/task-runner@0.1.7
|
|
17
|
+
- @noya-app/state-manager@0.1.64
|
|
18
|
+
|
|
3
19
|
## 0.1.80
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|