create-beignet 0.0.47 → 0.0.48

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,14 @@
1
1
  # create-beignet
2
2
 
3
+ ## 0.0.48
4
+
5
+ ### Patch Changes
6
+
7
+ - 728c942: Add read-only migration status reports, connected validation, stable generated migration hashes, preflight pending detection, generated Drizzle status scripts, and serialized deployment guidance.
8
+ - Updated dependencies [728c942]
9
+ - Updated dependencies [2391a09]
10
+ - @beignet/cli@0.0.48
11
+
3
12
  ## 0.0.47
4
13
 
5
14
  ### Patch Changes
package/README.md CHANGED
@@ -27,6 +27,7 @@ cd my-app
27
27
  bun install
28
28
  cp .env.example .env.local
29
29
  bun beignet db migrate
30
+ bun beignet db status
30
31
  bun run dev
31
32
  ```
32
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-beignet",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
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.47"
61
+ "@beignet/cli": "^0.0.48"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@types/bun": "^1.3.13",