iclavue 13.1.0 → 13.1.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 CHANGED
@@ -1,4 +1,4 @@
1
- # Clavue v13.1.0
1
+ # Clavue v13.1.1
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/iclavue/image.png)
4
4
 
@@ -15,7 +15,7 @@ The npm registry is the source of truth for the latest version (`npm view iclavu
15
15
 
16
16
  ```bash
17
17
  npm install -g iclavue@latest && hash -r
18
- clavue --version # 13.1.0 (Clavue)
18
+ clavue --version # 13.1.1 (Clavue)
19
19
  ```
20
20
 
21
21
  One-liner without a global install, or the install script (also npm-backed):
@@ -28,8 +28,8 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
28
28
  Pin a version:
29
29
 
30
30
  ```bash
31
- npm install -g iclavue@13.1.0
32
- curl -fsSL https://unpkg.com/iclavue@13.1.0/install.sh | bash -s -- 13.1.0
31
+ npm install -g iclavue@13.1.1
32
+ curl -fsSL https://unpkg.com/iclavue@13.1.1/install.sh | bash -s -- 13.1.1
33
33
  ```
34
34
 
35
35
  Inside a running session `/update` (or `clavue update`) checks `npm view iclavue@latest` and reinstalls. If `clavue --version` still prints an old number after an upgrade, run `clavue --version --detail` — a stale launcher from another package (`clavue@8.x`) may shadow the `iclavue` bin; `npm install -g iclavue@latest` re-links it, `repair.sh` cleans a half-finished install.
@@ -100,8 +100,8 @@ npx -y iclavue
100
100
  Run a specific version with `npx`:
101
101
 
102
102
  ```bash
103
- npx -y iclavue@13.1.0 --version
104
- npx -y iclavue@13.1.0
103
+ npx -y iclavue@13.1.1 --version
104
+ npx -y iclavue@13.1.1
105
105
  ```
106
106
 
107
107
  Install globally from npm when you want the `clavue` command to stay available:
@@ -121,7 +121,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
121
121
  Install a specific version globally:
122
122
 
123
123
  ```bash
124
- curl -fsSL https://unpkg.com/iclavue@13.1.0/install.sh | bash -s -- 13.1.0
124
+ curl -fsSL https://unpkg.com/iclavue@13.1.1/install.sh | bash -s -- 13.1.1
125
125
  ```
126
126
 
127
127
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -270,7 +270,7 @@ Version check:
270
270
  ```bash
271
271
  clavue --version
272
272
  npx -y iclavue --version
273
- npx -y iclavue@13.1.0 --version
273
+ npx -y iclavue@13.1.1 --version
274
274
  # available after a global install and launcher setup
275
275
  clavue --version
276
276
  ```
package/dist/clavue.js CHANGED
@@ -16,7 +16,7 @@ const __isVersion =
16
16
  __clavueArgs[0] === '-v' ||
17
17
  __clavueArgs[0] === '-V');
18
18
  if (__isVersion) {
19
- console.log("13.1.0 (Clavue)");
19
+ console.log("13.1.1 (Clavue)");
20
20
  const __detail =
21
21
  __clavueArgs.includes('--detail') ||
22
22
  __clavueArgs.includes('--path') ||