@brainbase-labs/cli 0.28.0 → 0.29.1
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 +7 -0
- package/dist/index.js +2255 -530
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -164,6 +164,13 @@ release workflows read that file. The generated `dist/index.js` is committed
|
|
|
164
164
|
and byte-checked in CI, and Bun patch releases can produce different bundle
|
|
165
165
|
output.
|
|
166
166
|
|
|
167
|
+
The suite is version-sensitive too, so the pin is enforced at each entry point:
|
|
168
|
+
`bun run verify` and `bun run build` refuse another Bun outright, and `bun test`
|
|
169
|
+
prints a warning and carries on. Each names the pinned version and the command
|
|
170
|
+
to get it: `npx bun@<pinned> …`. Use `npx` rather than `bunx` — bunx runs most
|
|
171
|
+
published Bun versions but cannot resolve a bin for 1.3.10 specifically, which
|
|
172
|
+
is the current pin. Set `SKIP_BUN_VERSION_CHECK=1` to override any of them.
|
|
173
|
+
|
|
167
174
|
### Releasing
|
|
168
175
|
|
|
169
176
|
1. Run **Prepare Release** from `main` with the exact version. It refuses a
|