create-beignet 0.0.41 → 0.0.43

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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # create-beignet
2
2
 
3
+ ## 0.0.43
4
+
5
+ ### Patch Changes
6
+
7
+ - 19b9c52: Modernize generated Zod and Drizzle syntax, flush Pino logs during provider shutdown, strengthen shared credential redaction, add mail operation durations, and correct copied documentation examples.
8
+ - Updated dependencies [19b9c52]
9
+ - Updated dependencies [19b9c52]
10
+ - Updated dependencies [19b9c52]
11
+ - Updated dependencies [19b9c52]
12
+ - @beignet/cli@0.0.43
13
+
14
+ ## 0.0.42
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [879ae2b]
19
+ - Updated dependencies [c9e6971]
20
+ - Updated dependencies [d199ee3]
21
+ - Updated dependencies [20bec79]
22
+ - @beignet/cli@0.0.42
23
+
3
24
  ## 0.0.41
4
25
 
5
26
  ### Patch Changes
package/README.md CHANGED
@@ -35,7 +35,7 @@ bun run dev
35
35
  Running bare `bun create beignet` in an interactive terminal opens a
36
36
  prompt-based setup that asks for the project directory, whether to scaffold
37
37
  an API-only app, which database to use, and which provider integrations to
38
- add. Passing any selection flag (`--api`, `--db`, `--integrations`, or
38
+ add. Passing any selection flag (`--api`, `--db`, `--providers`, or
39
39
  `--package-manager`) skips the prompts, and `--yes` forces the
40
40
  non-interactive defaults (the full-stack SQLite starter with `bun`) even on a
41
41
  terminal:
@@ -50,7 +50,7 @@ bun create beignet my-app --yes
50
50
  passes through unchanged:
51
51
 
52
52
  ```bash
53
- bun create beignet my-app --api --integrations inngest,resend
53
+ bun create beignet my-app --api --providers jobs-inngest,mail-resend
54
54
  bun create beignet my-app --db postgres
55
55
  ```
56
56
 
@@ -60,5 +60,5 @@ migration, env examples, and tests for that database.
60
60
 
61
61
  See the
62
62
  [`@beignet/cli` README](https://github.com/taylorbryant/beignet/tree/main/packages/cli#readme)
63
- for the full list of flags and integrations, plus the `beignet` commands
63
+ for the full list of flags and providers, plus the `beignet` commands
64
64
  available inside a generated app.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-beignet",
3
- "version": "0.0.41",
3
+ "version": "0.0.43",
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.41"
61
+ "@beignet/cli": "^0.0.43"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@types/bun": "^1.3.13",