@koderlabs/tasks-cli 0.1.1 → 0.1.3
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 +12 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,16 +3,23 @@
|
|
|
3
3
|
InstantTasks operator CLI: validate your install, upload source maps and native
|
|
4
4
|
symbols, scaffold SDK init, and tail incoming events from any terminal.
|
|
5
5
|
|
|
6
|
-
Install
|
|
6
|
+
## Install
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Run on demand without installing:
|
|
9
|
+
|
|
10
|
+
```bash
|
|
9
11
|
npx @koderlabs/tasks-cli doctor
|
|
10
12
|
```
|
|
11
13
|
|
|
12
|
-
Or
|
|
14
|
+
Or install globally:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -g @koderlabs/tasks-cli
|
|
18
|
+
# or
|
|
19
|
+
pnpm add -g @koderlabs/tasks-cli
|
|
20
|
+
# or
|
|
21
|
+
yarn global add @koderlabs/tasks-cli
|
|
13
22
|
|
|
14
|
-
```sh
|
|
15
|
-
npm i -g @koderlabs/tasks-cli
|
|
16
23
|
tasks --help
|
|
17
24
|
```
|
|
18
25
|
|