@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 +2 -2
- package/README.md +2 -2
- package/package.json +1 -1
package/README.ja.md
CHANGED
|
@@ -29,14 +29,14 @@ CDNスクリプトはカスタム要素の定義を登録するだけ — ロー
|
|
|
29
29
|
|
|
30
30
|
```html
|
|
31
31
|
<!-- 自動初期化 — これだけで動作します -->
|
|
32
|
-
<script type="module" src="https://
|
|
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://
|
|
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://
|
|
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://
|
|
39
|
+
import { bootstrapState } from 'https://esm.run/@wcstack/state';
|
|
40
40
|
bootstrapState();
|
|
41
41
|
</script>
|
|
42
42
|
```
|
package/package.json
CHANGED