@trycadence/cli 0.1.11-dev.0 → 0.1.14-dev.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 +32 -0
  2. package/dist/cadence +1491 -141
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -9,6 +9,7 @@ The CLI runs on Bun.
9
9
  ```sh
10
10
  npm install -g @trycadence/cli
11
11
  cadence --help
12
+ cadence --version
12
13
  ```
13
14
 
14
15
  You can also run it without a global install:
@@ -17,9 +18,40 @@ You can also run it without a global install:
17
18
  npx @trycadence/cli --help
18
19
  ```
19
20
 
21
+ ## Version
22
+
23
+ ```sh
24
+ cadence --version
25
+ cadence -v
26
+ cadence version --json
27
+ ```
28
+
20
29
  ## Development
21
30
 
22
31
  ```sh
23
32
  bun run dev -- --help
24
33
  bun run build
25
34
  ```
35
+
36
+ ## Development releases
37
+
38
+ From the repository root, publish a prerelease to the npm `dev` tag:
39
+
40
+ ```sh
41
+ just cli-dev-publish
42
+ ```
43
+
44
+ Install the current `dev` tag globally with Bun, bypassing the minimum release
45
+ age gate for freshly published packages:
46
+
47
+ ```sh
48
+ just cli-dev-install
49
+ ```
50
+
51
+ Useful supporting commands:
52
+
53
+ ```sh
54
+ just cli-dev-bump
55
+ just cli-dev-tag 0.1.9-dev.0
56
+ just cli-dev-install dev
57
+ ```