@noya-app/noya-multiplayer-react 0.1.29 → 0.1.31

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.
@@ -6,8 +6,8 @@
6
6
  CLI Using tsup config: /Users/devinabbott/Projects/noya-core/packages/noya-multiplayer-react/bundle.config.ts
7
7
  CLI Target: es2022
8
8
  CJS Build start
9
- CJS dist/index.bundle.js 338.81 KB
10
- CJS ⚡️ Build success in 83ms
9
+ CJS dist/index.bundle.js 200.58 KB
10
+ CJS ⚡️ Build success in 57ms
11
11
  $ tsup src/index.ts --format cjs,esm --dts --sourcemap
12
12
  CLI Building entry: src/index.ts
13
13
  CLI Using tsconfig: tsconfig.json
@@ -15,14 +15,14 @@
15
15
  CLI Target: esnext
16
16
  CJS Build start
17
17
  ESM Build start
18
- ESM dist/index.mjs 45.02 KB
19
- ESM dist/index.mjs.map 82.40 KB
20
- ESM ⚡️ Build success in 25ms
21
- CJS dist/index.js 50.60 KB
22
- CJS dist/index.js.map 82.18 KB
23
- CJS ⚡️ Build success in 26ms
18
+ ESM dist/index.mjs 45.08 KB
19
+ ESM dist/index.mjs.map 82.52 KB
20
+ ESM ⚡️ Build success in 22ms
21
+ CJS dist/index.js 50.65 KB
22
+ CJS dist/index.js.map 82.25 KB
23
+ CJS ⚡️ Build success in 22ms
24
24
  DTS Build start
25
- "ComponentPropsWithoutRef" is imported from external module "react" but never used in "src/inspector/StateInspector.tsx", "src/hooks.ts" and "src/components/UserPointersOverlay.tsx".
26
- DTS ⚡️ Build success in 2253ms
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
+ DTS ⚡️ Build success in 2763ms
27
27
  DTS dist/index.d.ts 7.41 KB
28
28
  DTS dist/index.d.mts 7.41 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @noya-app/state-manager
2
2
 
3
+ ## 0.1.31
4
+
5
+ ### Patch Changes
6
+
7
+ - b022ce3: Improve standalone component usage. Don't save to localStorage by default
8
+
9
+ ## 0.1.30
10
+
11
+ ### Patch Changes
12
+
13
+ - 1f558d0: Improve bundled build
14
+
3
15
  ## 0.1.29
4
16
 
5
17
  ### Patch Changes
package/bundle.config.ts CHANGED
@@ -9,12 +9,11 @@ export default defineConfig({
9
9
  dts: false,
10
10
  shims: true,
11
11
  skipNodeModulesBundle: true,
12
- // clean: true,
13
12
  target: "es2022",
14
13
  platform: "browser",
15
14
  minify: true,
16
15
  bundle: true,
17
16
  // https://github.com/egoist/tsup/issues/619
18
- noExternal: [/(.*)/],
17
+ noExternal: [/^(?!react$|react-dom$).*$/],
19
18
  splitting: false,
20
19
  });