@revturbine/cli 0.7.1 → 0.8.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.
Files changed (3) hide show
  1. package/README.md +16 -4
  2. package/dist/cli.js +1173 -233
  3. package/package.json +22 -11
package/README.md CHANGED
@@ -11,16 +11,28 @@ every change is reviewable and rollback-able.
11
11
 
12
12
  ## Install
13
13
 
14
+ Pin it to the repo it operates on:
15
+
16
+ ```bash
17
+ npm install -D @revturbine/cli # or: pnpm add -D / yarn add -D
18
+ npx revturbine --help
19
+ ```
20
+
21
+ The CLI bundles a **version-stamped snapshot** of the RevTurbine schema, so
22
+ CLI↔config compatibility is a property of the repo rather than of the machine —
23
+ which is why it belongs in your lockfile. Pinning also means CI and coding-agent
24
+ sandboxes need no global install.
25
+
14
26
  ```bash
15
- npm i -g @revturbine/cli # global `revturbine` binary
16
- # or run without installing:
17
- npx @revturbine/cli --help
27
+ npm i -g @revturbine/cli # optional: a global `revturbine` for ad-hoc use
28
+ npx @revturbine/cli --help # or run it without installing at all
18
29
  ```
19
30
 
20
31
  The published npm package is `@revturbine/cli`; the installed command is
21
32
  `revturbine`.
22
33
 
23
- Requires Node ≥ 20.
34
+ Requires Node ≥ 22.13. Source builds use the npm 11.18.0 version declared in
35
+ `package.json`.
24
36
 
25
37
  ## Quick start
26
38