skreg-cli 0.1.2 → 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 CHANGED
@@ -14,11 +14,35 @@ private registry your team controls.
14
14
 
15
15
  ## Install
16
16
 
17
+ ### Pre-built binary (macOS and Linux)
18
+
19
+ ```bash
20
+ curl --proto '=https' --tlsv1.2 -LsSf https://github.com/dymocaptin/skreg/releases/download/v0.1.2/skreg-cli-installer.sh | sh
21
+ ```
22
+
23
+ ### Homebrew (macOS and Linux)
24
+
25
+ ```bash
26
+ brew tap dymocaptin/tap
27
+ brew install skreg-cli
28
+ ```
29
+
30
+ ### npm
31
+
32
+ ```bash
33
+ npm install -g skreg-cli
34
+ ```
35
+
36
+ ### cargo (build from source)
37
+
38
+ Requires Rust ([rustup.rs](https://rustup.rs)).
39
+
17
40
  ```bash
18
- cargo install skreg-cli
41
+ git clone https://github.com/dymocaptin/skreg.git
42
+ cargo install --path skreg/crates/skreg-cli
19
43
  ```
20
44
 
21
- Requires Rust ([rustup.rs](https://rustup.rs)). After installing, verify with:
45
+ After installing with any method, verify with:
22
46
 
23
47
  ```bash
24
48
  skreg --version
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "skreg-cli",
26
- "version": "0.1.2"
26
+ "version": "0.1.3"
27
27
  },
28
28
  "node_modules/@isaacs/cliui": {
29
29
  "engines": {
@@ -542,5 +542,5 @@
542
542
  }
543
543
  },
544
544
  "requires": true,
545
- "version": "0.1.2"
545
+ "version": "0.1.3"
546
546
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/dymocaptin/skreg/releases/download/v0.1.2"
3
+ "https://github.com/dymocaptin/skreg/releases/download/v0.1.3"
4
4
  ],
5
5
  "author": "dymocaptin",
6
6
  "bin": {
@@ -86,7 +86,7 @@
86
86
  "zipExt": ".tar.xz"
87
87
  }
88
88
  },
89
- "version": "0.1.2",
89
+ "version": "0.1.3",
90
90
  "volta": {
91
91
  "node": "18.14.1",
92
92
  "npm": "9.5.0"