spark-html-offline 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,7 +33,7 @@ Works with any CDN — esm.sh, unpkg, jsdelivr, raw.githubusercontent, your own.
33
33
  ## Install
34
34
 
35
35
  ```bash
36
- npm install spark-html-offline
36
+ bun add spark-html-offline
37
37
  ```
38
38
 
39
39
  ## How it works
@@ -105,6 +105,7 @@ virtual DOM, no build step required. Add only what you use.
105
105
  | Package | What it does |
106
106
  |---|---|
107
107
  | [`spark-html`](https://www.npmjs.com/package/spark-html) | The runtime — components, reactivity, stores, forms, scoped styles. 13 kB gzip, 0 deps. |
108
+ | [`spark-html-bun`](https://www.npmjs.com/package/spark-html-bun) | Dev server, bundler & preview on Bun — scoped HMR, no-build dev, post-build pipeline. |
108
109
  | [`spark-html-router`](https://www.npmjs.com/package/spark-html-router) | `<template route>` routing — nested routes/layouts, `route.query`, active links. |
109
110
  | [`spark-html-theme`](https://www.npmjs.com/package/spark-html-theme) | Dark/light/system theming in one line — persisted, no flash. |
110
111
  | [`spark-html-head`](https://www.npmjs.com/package/spark-html-head) | Reactive `<title>`/`<meta>` per route + a `head` store. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spark-html-offline",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Offline-capable URL imports for spark-html — a tiny service worker that caches CDN-imported components on first fetch and serves them when the network is gone. Zero dependencies.",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",