@cnbcool/cnb-cli 1.4.2 → 1.4.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 -4
- package/dist/index.js +30 -29
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -35,25 +35,25 @@ npx skills add https://cnb.cool/cnb/skills/cnb-skill.git --skill cnb-api --skill
|
|
|
35
35
|
**Linux / macOS**:
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
curl -fsSL https://cnb.cool/cnb/skills/cnb-skill/-/raw/main/install.sh | sh
|
|
38
|
+
curl -fsSL https://cnb.cool/cnb/skills/cnb-skill/-/git/raw/main/install.sh | sh
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
安装指定版本:
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
curl -fsSL https://cnb.cool/cnb/skills/cnb-skill/-/raw/main/install.sh | sh -s 1.4.
|
|
44
|
+
curl -fsSL https://cnb.cool/cnb/skills/cnb-skill/-/git/raw/main/install.sh | sh -s 1.4.3
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
**Windows(PowerShell)**:
|
|
48
48
|
|
|
49
49
|
```powershell
|
|
50
|
-
irm https://cnb.cool/cnb/skills/cnb-skill/-/raw/main/install.ps1 | iex
|
|
50
|
+
irm https://cnb.cool/cnb/skills/cnb-skill/-/git/raw/main/install.ps1 | iex
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
安装指定版本:
|
|
54
54
|
|
|
55
55
|
```powershell
|
|
56
|
-
$v="1.4.
|
|
56
|
+
$v="1.4.3"; irm https://cnb.cool/cnb/skills/cnb-skill/-/git/raw/main/install.ps1 | iex
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
#### 方式二:手动下载
|