@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 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
 
@@ -222,7 +222,7 @@ function requireTriggerKey() {
222
222
  }
223
223
 
224
224
  // src/version.ts
225
- var CLI_VERSION = true ? "0.1.1-beta.3" : "0.0.0-dev";
225
+ var CLI_VERSION = true ? "0.1.1-rc.1" : "0.0.0-dev";
226
226
 
227
227
  // src/utils/proxy.ts
228
228
  import { ProxyAgent } from "undici";