@barefootjs/cli 0.12.0 → 0.14.0
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/dist/docs/core/quick-start.mdx +5 -0
- package/dist/index.js +314 -104
- package/package.json +4 -4
|
@@ -18,6 +18,11 @@ Scaffold a BarefootJS app, run it locally, and tour the generated project. About
|
|
|
18
18
|
|
|
19
19
|
Press Enter at the prompts to accept the defaults (Hono on Cloudflare Workers, UnoCSS).
|
|
20
20
|
|
|
21
|
+
The CSS prompt has two options:
|
|
22
|
+
|
|
23
|
+
- **UnoCSS** (default) — wires up UnoCSS and pulls a starter `<Button>` from the BarefootJS UI registry. The rest of this guide follows this path.
|
|
24
|
+
- **None (bring your own CSS)** — no UnoCSS, no UI components, no stylesheets. You get just the JSX→template+signals compiler output and a dependency-free starter `Counter` built from native `<button>` elements. Pick this when you want to wire up your own styling. Pass `--css none` to select it non-interactively.
|
|
25
|
+
|
|
21
26
|
## 2. Install and run
|
|
22
27
|
|
|
23
28
|
```bash
|