create-beignet 0.0.51 → 0.0.52

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,22 @@
1
1
  # create-beignet
2
2
 
3
+ ## 0.0.52
4
+
5
+ ### Patch Changes
6
+
7
+ - b39bb6e: Clarify that Beignet applications require Node.js 22.12 or newer and can use
8
+ npm, pnpm, Yarn, or Bun for package management and framework commands.
9
+ - c12b995: Correct repository-port examples in provider documentation and direct app
10
+ creation users to the public CLI reference.
11
+ - Updated dependencies [b39bb6e]
12
+ - Updated dependencies [1ec2ed2]
13
+ - Updated dependencies [d4bb9fb]
14
+ - Updated dependencies [a0b0e53]
15
+ - Updated dependencies [06eb712]
16
+ - Updated dependencies [ac76ab9]
17
+ - Updated dependencies [9d52cb7]
18
+ - @beignet/cli@0.0.52
19
+
3
20
  ## 0.0.51
4
21
 
5
22
  ### Patch Changes
package/README.md CHANGED
@@ -6,8 +6,8 @@
6
6
 
7
7
  Create a new Beignet app with one command.
8
8
 
9
- Beignet requires Node.js 22.12 or newer. Bun 1.3.14 or newer is supported for
10
- the create command.
9
+ Beignet requires Node.js 22.12 or newer. Bun is optional; run the create
10
+ command with npm, pnpm, Yarn, or Bun.
11
11
 
12
12
  ## Create an app
13
13
 
@@ -62,7 +62,5 @@ bun create beignet my-app --db postgres
62
62
  `mysql`. Every backend scaffolds provider wiring, schema, the vendored initial
63
63
  migration, env examples, and tests for that database.
64
64
 
65
- See the
66
- [`@beignet/cli` README](https://github.com/taylorbryant/beignet/tree/main/packages/cli#readme)
67
- for the full list of flags and providers, plus the `beignet` commands
68
- available inside a generated app.
65
+ See the [CLI reference](https://beignetjs.com/cli) for the full list of flags
66
+ and providers, plus the `beignet` commands available inside a generated app.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-beignet",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "type": "module",
5
5
  "description": "Create a new Beignet app with one command.",
6
6
  "main": "./dist/index.js",
@@ -58,10 +58,10 @@
58
58
  "node": ">=22.12.0"
59
59
  },
60
60
  "dependencies": {
61
- "@beignet/cli": "^0.0.51"
61
+ "@beignet/cli": "^0.0.52"
62
62
  },
63
63
  "devDependencies": {
64
- "@types/bun": "^1.3.13",
64
+ "@types/bun": "^1.4.0",
65
65
  "@types/node": "^22.0.0",
66
66
  "typescript": "^5.3.0"
67
67
  }