wcstack 2.4.0 → 2.5.1

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.md CHANGED
@@ -35,11 +35,11 @@ wcstack is buildless — load what you need from a CDN. The default is one tag p
35
35
 
36
36
  Each `/auto` script registers its custom elements and does nothing else. No initialization call, no bootstrap. Tags activate when the browser parses them. The tags fetch in parallel (every `/auto` is self-contained), so multiple tags cost requests, not a waterfall.
37
37
 
38
- For an app that uses the SPA core anyway, **this package ships the bundle**: `wcstack/auto` is `@wcstack/state` + `@wcstack/router` + `@wcstack/fetch` + `@wcstack/storage` + `@wcstack/autoloader` pre-linked by Rollup into one self-contained file (254 KB min / 71 KB gzip) — one request, and in production one `integrity` hash covering every line of the core that runs (digests ship with each GitHub Release; see `docs/sri.md`):
38
+ For an app that uses the SPA core anyway, **this package ships the bundle**: `wcstack/auto` is `@wcstack/state` + `@wcstack/router` + `@wcstack/fetch` + `@wcstack/storage` + `@wcstack/autoloader` pre-linked by Rollup into one self-contained file (315 KB min / 90 KB gzip as of 2.5.1) — one request, and in production one `integrity` hash covering every line of the core that runs (digests ship with each GitHub Release; see `docs/sri.md`):
39
39
 
40
40
  ```html
41
41
  <script type="module"
42
- src="https://cdn.jsdelivr.net/npm/wcstack@2.4.0/dist/auto.min.js"
42
+ src="https://cdn.jsdelivr.net/npm/wcstack@2.5.1/dist/auto.min.js"
43
43
  integrity="sha384-…"></script>
44
44
  ```
45
45