@wairon/cli 5.1.1-dev.7 → 5.1.1-dev.8
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 +6 -2
- package/dist/cli/index.js +6620 -5347
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +3838 -269
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -125,8 +125,12 @@ wairon update # check and install the latest stable release
|
|
|
125
125
|
wairon update --check # check only
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
-
Release channels: `stable` (default), `beta`, `preview` — switch with
|
|
129
|
-
`wairon update --channel <name>` (persists in `~/.wairon/config.json`).
|
|
128
|
+
Release channels: `stable` (default), `beta`, `preview`, `dev` — switch with
|
|
129
|
+
`wairon update --channel <name>` (persists in `~/.wairon/config.json`). Each
|
|
130
|
+
channel sees its own tier and every narrower one, so `stable` only ever
|
|
131
|
+
installs a `vX.Y.Z` release and `dev` sees the `-dev.N` build cut from every
|
|
132
|
+
merge to `dev`. Installing from npm, the channels are the dist-tags:
|
|
133
|
+
`@wairon/cli@latest`, `@beta`, `@preview`, `@dev`.
|
|
130
134
|
|
|
131
135
|
---
|
|
132
136
|
|