create-zerotal 1.14.2 → 1.15.0

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/README.md CHANGED
@@ -46,7 +46,7 @@ cd my-app
46
46
  # (set DATABASE_URL in .env for a non-sqlite api project)
47
47
  bun zt migrate # api template only
48
48
  bun zt db:seed # admin template — demo data plus the first account
49
- bun zt serve --dev
49
+ bun zt dev
50
50
  ```
51
51
 
52
52
  The `admin` template's panel is behind a sign-in, so seeding is what makes a fresh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zerotal",
3
- "version": "1.14.2",
3
+ "version": "1.15.0",
4
4
  "description": "Create a new Zerotal application",
5
5
  "license": "MIT",
6
6
  "maturity": "stable",
package/src/scaffold.ts CHANGED
@@ -13,7 +13,7 @@ export type Template = 'minimal' | 'api' | 'admin' | 'flow' | 'react' | 'vue';
13
13
  // "^1.1.0" found for specifier "zerotal"` — the first thing anyone trying the
14
14
  // framework saw. `scaffold.test.ts` now asserts the two agree, so CI fails rather
15
15
  // than the user's install.
16
- export const ZT_VERSION = "^1.14.2";
16
+ export const ZT_VERSION = "^1.15.0";
17
17
 
18
18
  export interface ScaffoldOptions {
19
19
  name: string;