@trycadence/cli 0.1.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 +25 -0
- package/dist/cadence +2417 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Cadence CLI
|
|
2
|
+
|
|
3
|
+
Command-line client for Cadence work coordination.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
The CLI runs on Bun.
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install -g @trycadence/cli
|
|
11
|
+
cadence --help
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
You can also run it without a global install:
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
npx @trycadence/cli --help
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Development
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
bun run dev -- --help
|
|
24
|
+
bun run build
|
|
25
|
+
```
|