@barefootjs/cli 0.8.0 → 0.9.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/dist/docs/core/README.mdx +2 -2
- package/dist/docs/core/quick-start.mdx +1 -1
- package/dist/index.js +514 -218
- package/package.json +2 -2
|
@@ -73,8 +73,8 @@ Code examples use **switchable tabs** for adapter output and package manager com
|
|
|
73
73
|
|
|
74
74
|
<Tabs id="adapter" labels="Hono (default),Go Template" />
|
|
75
75
|
|
|
76
|
-
**Package Manager** — npm (default), bun, pnpm, or
|
|
76
|
+
**Package Manager** — npm (default), bun, pnpm, yarn, or deno:
|
|
77
77
|
|
|
78
|
-
<Tabs id="pm" labels="npm (default),bun,pnpm,yarn" />
|
|
78
|
+
<Tabs id="pm" labels="npm (default),bun,pnpm,yarn,deno" />
|
|
79
79
|
|
|
80
80
|
> Sections marked with 💡 explain JSX and TypeScript concepts for developers from Go, Python, or other backend languages.
|
|
@@ -9,7 +9,7 @@ Scaffold a BarefootJS app, run it locally, and tour the generated project. About
|
|
|
9
9
|
|
|
10
10
|
## Prerequisites
|
|
11
11
|
|
|
12
|
-
- **Node.js 22+** (or Bun).
|
|
12
|
+
- **Node.js 22+** (or Bun, or Deno 2+).
|
|
13
13
|
- The default scaffold targets [Cloudflare Workers](https://developers.cloudflare.com/workers/) via `wrangler dev` — runs locally, no account needed.
|
|
14
14
|
|
|
15
15
|
## 1. Scaffold the project
|