create-zenith 0.5.0-beta.2.13 → 0.5.0-beta.2.19
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 +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
The official CLI for scaffolding new Zenith applications. Fast, animated, and delightful.
|
|
4
4
|
|
|
5
|
+
## Canonical Docs
|
|
6
|
+
|
|
7
|
+
- Create contract: `../zenith-docs/documentation/contracts/create-contract.md`
|
|
8
|
+
- Install and compatibility: `../zenith-docs/documentation/install-compatibility.md`
|
|
9
|
+
|
|
5
10
|
## Overview
|
|
6
11
|
|
|
7
12
|
`create-zenith` is the entry point to the Zenith ecosystem. It provides a signature, high-quality terminal experience for initializing new projects, ensuring you go from command line to `localhost` in seconds with confidence.
|
|
@@ -35,6 +40,18 @@ pnpm create zenith
|
|
|
35
40
|
| `-h, --help` | Show usage information |
|
|
36
41
|
| `-v, --version` | Show version number |
|
|
37
42
|
|
|
43
|
+
## Beta Version Pinning
|
|
44
|
+
|
|
45
|
+
Zenith beta currently pins `@zenithbuild/core` to `0.5.0-beta.2.19` and leaf packages (compiler, cli, runtime, router, bundler) to `0.5.0-beta.2.19`. This is intentional — core contains the CLI entry point and may bump independently for bin/CLI fixes without touching the engine.
|
|
46
|
+
|
|
47
|
+
If you see version mismatches after install, delete `node_modules` and `package-lock.json`, then reinstall.
|
|
48
|
+
|
|
49
|
+
## Latest Release (Beta 2.13)
|
|
50
|
+
|
|
51
|
+
- **Fixed:** `zenith --help` now exits 0 reliably (bin wrapper early-exit before version-mismatch checks)
|
|
52
|
+
- **Published:** Leaf packages at `0.5.0-beta.2.19`; `@zenithbuild/core` and `create-zenith` at `0.5.0-beta.2.19`
|
|
53
|
+
- **Verified:** scaffold → install → `--version` → `--help` → build → all routes output static HTML (`/`, `/about`, `/blog`, `/docs`)
|
|
54
|
+
|
|
38
55
|
## Development
|
|
39
56
|
|
|
40
57
|
```bash
|