clavue 8.8.95 → 8.8.98
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 +5 -5
- package/dist/cli.js +1437 -1435
- package/dist/provider-setup.js +1 -1
- package/docs/bug.md +436 -0
- package/docs/ccjk-clavue-compatibility-brief.md +346 -0
- package/docs/clavue-local-install-root-cause-2026-04-28.md +332 -0
- package/docs/clavue-native-installer-404-2026-04-28.md +184 -0
- package/docs/image copy 2.png +0 -0
- package/docs/image copy.png +0 -0
- package/docs/image.png +0 -0
- package/docs/website-content-recommendations.md +947 -26
- package/package.json +1 -1
- package/node_modules/cliui/CHANGELOG.md +0 -76
- package/node_modules/color-convert/CHANGELOG.md +0 -54
- package/node_modules/require-main-filename/CHANGELOG.md +0 -26
- package/node_modules/set-blocking/CHANGELOG.md +0 -26
- package/node_modules/y18n/CHANGELOG.md +0 -35
- package/node_modules/yargs/CHANGELOG.md +0 -420
- package/node_modules/yargs-parser/CHANGELOG.md +0 -601
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.8.
|
|
1
|
+
# Clavue v8.8.98
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -57,8 +57,8 @@ npx -y clavue
|
|
|
57
57
|
Run a specific version with `npx`:
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
npx -y clavue@8.8.
|
|
61
|
-
npx -y clavue@8.8.
|
|
60
|
+
npx -y clavue@8.8.98 --version
|
|
61
|
+
npx -y clavue@8.8.98
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -78,7 +78,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
78
78
|
Install a specific version globally:
|
|
79
79
|
|
|
80
80
|
```bash
|
|
81
|
-
curl -fsSL https://unpkg.com/clavue@8.8.
|
|
81
|
+
curl -fsSL https://unpkg.com/clavue@8.8.98/install.sh | bash -s -- 8.8.98
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
## Quick Start: Custom API
|
|
@@ -167,7 +167,7 @@ Version check:
|
|
|
167
167
|
```bash
|
|
168
168
|
clavue --version
|
|
169
169
|
npx -y clavue --version
|
|
170
|
-
npx -y clavue@8.8.
|
|
170
|
+
npx -y clavue@8.8.98 --version
|
|
171
171
|
# available after a global install and launcher setup
|
|
172
172
|
clavue --version
|
|
173
173
|
```
|