clavue 9.9.0 → 9.9.1
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/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v9.9.
|
|
1
|
+
# Clavue v9.9.1
|
|
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@9.9.
|
|
69
|
-
npx -y clavue@9.9.
|
|
68
|
+
npx -y clavue@9.9.1 --version
|
|
69
|
+
npx -y clavue@9.9.1
|
|
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@9.9.
|
|
89
|
+
curl -fsSL https://unpkg.com/clavue@9.9.1/install.sh | bash -s -- 9.9.0
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -232,7 +232,7 @@ Version check:
|
|
|
232
232
|
```bash
|
|
233
233
|
clavue --version
|
|
234
234
|
npx -y clavue --version
|
|
235
|
-
npx -y clavue@9.9.
|
|
235
|
+
npx -y clavue@9.9.1 --version
|
|
236
236
|
# available after a global install and launcher setup
|
|
237
237
|
clavue --version
|
|
238
238
|
```
|
package/package.json
CHANGED