create-spark-html-app 0.8.1 → 0.8.2
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 +6 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,9 +7,7 @@ Bun-powered project (dev / build / preview via `spark-html-bun`) wired to
|
|
|
7
7
|
## Usage
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
|
|
11
|
-
# or
|
|
12
|
-
bunx create-spark-html-app my-app
|
|
10
|
+
bunx create-spark-html-app@latest my-app
|
|
13
11
|
```
|
|
14
12
|
|
|
15
13
|
Then:
|
|
@@ -23,7 +21,7 @@ bun run dev
|
|
|
23
21
|
Run it with no name to be prompted:
|
|
24
22
|
|
|
25
23
|
```bash
|
|
26
|
-
|
|
24
|
+
bunx create-spark-html-app@latest
|
|
27
25
|
```
|
|
28
26
|
|
|
29
27
|
## What you get
|
|
@@ -44,10 +42,10 @@ Every included feature ships with a live demo component, ready to run.
|
|
|
44
42
|
Non-interactive? Pass flags instead of answering prompts:
|
|
45
43
|
|
|
46
44
|
```bash
|
|
47
|
-
bunx create-spark-html-app my-app --yes # accept the defaults
|
|
48
|
-
bunx create-spark-html-app my-app --all # everything on
|
|
49
|
-
bunx create-spark-html-app my-app --minimal # core only
|
|
50
|
-
bunx create-spark-html-app my-app --pwa --no-image # per-feature
|
|
45
|
+
bunx create-spark-html-app@latest my-app --yes # accept the defaults
|
|
46
|
+
bunx create-spark-html-app@latest my-app --all # everything on
|
|
47
|
+
bunx create-spark-html-app@latest my-app --minimal # core only
|
|
48
|
+
bunx create-spark-html-app@latest my-app --pwa --no-image # per-feature
|
|
51
49
|
```
|
|
52
50
|
|
|
53
51
|
Everything is plain HTML and JavaScript — no compiler, no virtual DOM, no
|