@yoooclaw/cli 0.10.0-beta.0 → 0.10.0-beta.2
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 +10 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -12,7 +12,16 @@ npm i -g @yoooclaw/cli
|
|
|
12
12
|
yc --version
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
也可不经 npm,直接下载原生二进制(见 GitHub Release / install.sh
|
|
15
|
+
也可不经 npm,直接下载原生二进制(见 GitHub Release / `install.sh` / `install.ps1`)。
|
|
16
|
+
|
|
17
|
+
Windows PowerShell 5.1+ 可一条命令安装原生版本,无需 Node/npm 或管理员权限:
|
|
18
|
+
|
|
19
|
+
```powershell
|
|
20
|
+
irm https://artifact.yoooclaw.com/cli/install.ps1 | iex
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
安装器会在新的原生 CLI 验证通过后,自动卸载检测到的旧版全局 npm 包;传
|
|
24
|
+
`-KeepNpm` 可保留 npm 版本。
|
|
16
25
|
|
|
17
26
|
## 支持平台
|
|
18
27
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yoooclaw/cli",
|
|
3
3
|
"description": "yoooclaw 独立 CLI(Go 实现,按平台分发原生二进制)",
|
|
4
|
-
"version": "0.10.0-beta.
|
|
4
|
+
"version": "0.10.0-beta.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "developer@yoooclaw.com",
|
|
7
7
|
"repository": {
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"postinstall": "node bin/activate-owner.js"
|
|
27
27
|
},
|
|
28
28
|
"optionalDependencies": {
|
|
29
|
-
"@yoooclaw/cli-darwin-arm64": "0.10.0-beta.
|
|
30
|
-
"@yoooclaw/cli-darwin-x64": "0.10.0-beta.
|
|
31
|
-
"@yoooclaw/cli-linux-arm64": "0.10.0-beta.
|
|
32
|
-
"@yoooclaw/cli-linux-x64": "0.10.0-beta.
|
|
33
|
-
"@yoooclaw/cli-win32-x64": "0.10.0-beta.
|
|
29
|
+
"@yoooclaw/cli-darwin-arm64": "0.10.0-beta.2",
|
|
30
|
+
"@yoooclaw/cli-darwin-x64": "0.10.0-beta.2",
|
|
31
|
+
"@yoooclaw/cli-linux-arm64": "0.10.0-beta.2",
|
|
32
|
+
"@yoooclaw/cli-linux-x64": "0.10.0-beta.2",
|
|
33
|
+
"@yoooclaw/cli-win32-x64": "0.10.0-beta.2"
|
|
34
34
|
},
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": ">=18"
|