clavue 8.8.124 → 8.8.126
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 +22 -22
- package/dist/mao-command.js +1 -1
- package/dist/provider-setup.js +1 -1
- package/docs/website-content-recommendations.md +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.8.
|
|
1
|
+
# Clavue v8.8.126
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -65,8 +65,8 @@ npx -y clavue
|
|
|
65
65
|
Run a specific version with `npx`:
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
npx -y clavue@8.8.
|
|
69
|
-
npx -y clavue@8.8.
|
|
68
|
+
npx -y clavue@8.8.126 --version
|
|
69
|
+
npx -y clavue@8.8.126
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -86,7 +86,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
86
86
|
Install a specific version globally:
|
|
87
87
|
|
|
88
88
|
```bash
|
|
89
|
-
curl -fsSL https://unpkg.com/clavue@8.8.
|
|
89
|
+
curl -fsSL https://unpkg.com/clavue@8.8.126/install.sh | bash -s -- 8.8.126
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
## Quick Start: Custom API
|
|
@@ -183,7 +183,7 @@ Version check:
|
|
|
183
183
|
```bash
|
|
184
184
|
clavue --version
|
|
185
185
|
npx -y clavue --version
|
|
186
|
-
npx -y clavue@8.8.
|
|
186
|
+
npx -y clavue@8.8.126 --version
|
|
187
187
|
# available after a global install and launcher setup
|
|
188
188
|
clavue --version
|
|
189
189
|
```
|