We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91ae941 commit 81eda45Copy full SHA for 81eda45
2 files changed
README.md
@@ -15,13 +15,24 @@ Output format is documented in [API.md](./API.md).
15
16
## Install
17
18
+Global install from GitHub (short-term distribution):
19
+
20
+```bash
21
+npm install -g github:PSPDFKit-labs/buildkite-cli#main
22
+bkci --help
23
+```
24
25
+For reproducible installs, pin a tag or commit instead of `#main`.
26
27
+Local development:
28
29
```bash
30
pnpm install
31
pnpm run build
32
pnpm run test
33
```
34
-Run:
35
+Run from source:
36
37
38
node dist/index.js <command>
package.json
@@ -9,6 +9,7 @@
9
},
10
"scripts": {
11
"build": "tsc -p tsconfig.json",
12
+ "prepare": "pnpm run build",
13
"dev": "tsx src/index.ts",
14
"check": "tsc --noEmit -p tsconfig.json",
"test": "pnpm run build && node --test dist/**/*.test.js"
0 commit comments