@wcstack/state 1.3.16 → 1.3.17

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/README.ja.md CHANGED
@@ -29,14 +29,14 @@ CDNスクリプトはカスタム要素の定義を登録するだけ — ロー
29
29
 
30
30
  ```html
31
31
  <!-- 自動初期化 — これだけで動作します -->
32
- <script type="module" src="https://cdn.jsdelivr.net/npm/@wcstack/state/dist/auto.js"></script>
32
+ <script type="module" src="https://esm.run/@wcstack/state/auto"></script>
33
33
  ```
34
34
 
35
35
  ### CDN(手動初期化)
36
36
 
37
37
  ```html
38
38
  <script type="module">
39
- import { bootstrapState } from 'https://cdn.jsdelivr.net/npm/@wcstack/state/dist/index.esm.js';
39
+ import { bootstrapState } from 'https://esm.run/@wcstack/state';
40
40
  bootstrapState();
41
41
  </script>
42
42
  ```
package/README.md CHANGED
@@ -29,14 +29,14 @@ The CDN script only registers the custom element definition — nothing else hap
29
29
 
30
30
  ```html
31
31
  <!-- Auto-initialization — this is all you need -->
32
- <script type="module" src="https://cdn.jsdelivr.net/npm/@wcstack/state/dist/auto.js"></script>
32
+ <script type="module" src="https://esm.run/@wcstack/state/auto"></script>
33
33
  ```
34
34
 
35
35
  ### CDN (manual initialization)
36
36
 
37
37
  ```html
38
38
  <script type="module">
39
- import { bootstrapState } from 'https://cdn.jsdelivr.net/npm/@wcstack/state/dist/index.esm.js';
39
+ import { bootstrapState } from 'https://esm.run/@wcstack/state';
40
40
  bootstrapState();
41
41
  </script>
42
42
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/state",
3
- "version": "1.3.16",
3
+ "version": "1.3.17",
4
4
  "description": "Reactive state management with declarative data binding for Web Components. Zero dependencies, buildless.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",