@zalify/cli 0.1.2 → 0.1.4
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 +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,8 @@ Zalify CLI – command-line interface for Zalify.
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
+
npm i -g zalify
|
|
9
|
+
# or
|
|
8
10
|
npm i -g @zalify/cli@latest
|
|
9
11
|
```
|
|
10
12
|
|
|
@@ -45,3 +47,5 @@ bun run release -- -ma # Major (X.0.0)
|
|
|
45
47
|
```
|
|
46
48
|
|
|
47
49
|
The release scripts load `.env` and fail with a clear error if `NODE_AUTH_TOKEN` is missing.
|
|
50
|
+
|
|
51
|
+
To allow `npm i -g zalify`, publish the wrapper package after releasing `@zalify/cli`: from the repo root run `npm publish --access public` in the `zalify/` folder (it depends on `@zalify/cli` and exposes the same binary).
|