create-beignet 0.0.8 → 0.0.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.
- package/CHANGELOG.md +9 -0
- package/README.md +9 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# create-beignet
|
|
2
2
|
|
|
3
|
+
## 0.0.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1bb42a3: Rename `@beignet/provider-drizzle-turso` to `@beignet/provider-db-drizzle`, with databases as subpath exports. Import from `@beignet/provider-db-drizzle/sqlite`; `DrizzleTurso*` symbols are now `DrizzleSqlite*`, the provider registers as `drizzle-sqlite`, and the connection env vars are `SQLITE_DB_URL` and `SQLITE_DB_AUTH_TOKEN` (the auth token applies to hosted libSQL such as Turso). Provider packages now follow `provider-<capability>-<implementation>` naming, and multi-backend implementations add backends as subpaths — `/postgres` and `/mysql` are planned next.
|
|
8
|
+
- Updated dependencies [6ebec8c]
|
|
9
|
+
- Updated dependencies [1bb42a3]
|
|
10
|
+
- @beignet/cli@0.0.9
|
|
11
|
+
|
|
3
12
|
## 0.0.8
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -26,16 +26,18 @@ After creation:
|
|
|
26
26
|
cd my-app
|
|
27
27
|
bun install
|
|
28
28
|
cp .env.example .env.local
|
|
29
|
+
bun beignet db migrate
|
|
29
30
|
bun run dev
|
|
30
31
|
```
|
|
31
32
|
|
|
32
33
|
## Interactive setup
|
|
33
34
|
|
|
34
35
|
Running bare `bun create beignet` in an interactive terminal opens a
|
|
35
|
-
prompt-based setup that asks for the project directory,
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
prompt-based setup that asks for the project directory, whether to scaffold
|
|
37
|
+
an API-only app, and which provider integrations to add. Passing any
|
|
38
|
+
selection flag (`--api`, `--integrations`, or `--package-manager`) skips the
|
|
39
|
+
prompts, and `--yes` forces the non-interactive defaults (the full-stack
|
|
40
|
+
starter with `bun`) even on a terminal:
|
|
39
41
|
|
|
40
42
|
```bash
|
|
41
43
|
bun create beignet my-app --yes
|
|
@@ -47,11 +49,10 @@ bun create beignet my-app --yes
|
|
|
47
49
|
passes through unchanged:
|
|
48
50
|
|
|
49
51
|
```bash
|
|
50
|
-
bun create beignet my-app --
|
|
52
|
+
bun create beignet my-app --api --integrations inngest,resend
|
|
51
53
|
```
|
|
52
54
|
|
|
53
55
|
See the
|
|
54
56
|
[`@beignet/cli` README](https://github.com/taylorbryant/beignet/tree/main/packages/cli#readme)
|
|
55
|
-
for the full list of
|
|
56
|
-
|
|
57
|
-
inside a generated app.
|
|
57
|
+
for the full list of flags and integrations, plus the `beignet` commands
|
|
58
|
+
available inside a generated app.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-beignet",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Create a new Beignet app with one command.",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"node": ">=18.0.0"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@beignet/cli": "^0.0.
|
|
61
|
+
"@beignet/cli": "^0.0.9"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@types/bun": "^1.3.13",
|