@supercheck/cli 0.1.1-beta.3 → 0.1.1-rc.1
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 +9 -0
- package/dist/bin/supercheck.js +1 -1
- package/dist/bin/supercheck.js.map +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -36,6 +36,15 @@ Upgrade the CLI to the latest release:
|
|
|
36
36
|
supercheck upgrade
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
+
## Release Channels
|
|
40
|
+
|
|
41
|
+
The npm package page defaults to the `latest` dist-tag. Prerelease versions (for example, `-rc.x`) are still visible when published with the `latest` tag.
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
npm view @supercheck/cli dist-tags
|
|
45
|
+
npm publish --tag latest --access public
|
|
46
|
+
npm dist-tag add @supercheck/cli@<version> rc
|
|
47
|
+
```
|
|
39
48
|
|
|
40
49
|
## Quick Start
|
|
41
50
|
|
package/dist/bin/supercheck.js
CHANGED