spark-html-motion 0.1.8 → 0.1.9

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
@@ -9,7 +9,7 @@ is held in the DOM until its exit animation finishes, then removed.
9
9
  ## Install
10
10
 
11
11
  ```sh
12
- npm install spark-html-motion
12
+ bun add spark-html-motion
13
13
  ```
14
14
 
15
15
  ## Use
@@ -85,6 +85,7 @@ virtual DOM, no build step required. Add only what you use.
85
85
  | Package | What it does |
86
86
  |---|---|
87
87
  | [`spark-html`](https://www.npmjs.com/package/spark-html) | The runtime — components, reactivity, stores, forms, scoped styles. 13 kB gzip, 0 deps. |
88
+ | [`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. |
88
89
  | [`spark-html-router`](https://www.npmjs.com/package/spark-html-router) | `<template route>` routing — nested routes/layouts, `route.query`, active links. |
89
90
  | [`spark-html-theme`](https://www.npmjs.com/package/spark-html-theme) | Dark/light/system theming in one line — persisted, no flash. |
90
91
  | [`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-motion",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Declarative enter/leave transitions for spark-html — transition=\"fade|slide|scale\" on if/each blocks, Web Animations API, 0 deps, no compiler.",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",