iclavue 10.9.6 → 10.9.8

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 v10.9.6
1
+ # Clavue v10.9.8
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/iclavue/image.png)
4
4
 
@@ -69,8 +69,8 @@ npx -y iclavue
69
69
  Run a specific version with `npx`:
70
70
 
71
71
  ```bash
72
- npx -y iclavue@10.9.6 --version
73
- npx -y iclavue@10.9.6
72
+ npx -y iclavue@10.9.8 --version
73
+ npx -y iclavue@10.9.8
74
74
  ```
75
75
 
76
76
  Install globally from npm when you want the `clavue` command to stay available:
@@ -90,7 +90,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
90
90
  Install a specific version globally:
91
91
 
92
92
  ```bash
93
- curl -fsSL https://unpkg.com/iclavue@10.9.6/install.sh | bash -s -- 10.9.6
93
+ curl -fsSL https://unpkg.com/iclavue@10.9.8/install.sh | bash -s -- 10.9.8
94
94
  ```
95
95
 
96
96
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -239,7 +239,7 @@ Version check:
239
239
  ```bash
240
240
  clavue --version
241
241
  npx -y iclavue --version
242
- npx -y iclavue@10.9.6 --version
242
+ npx -y iclavue@10.9.8 --version
243
243
  # available after a global install and launcher setup
244
244
  clavue --version
245
245
  ```
package/dist/clavue.js CHANGED
@@ -7,7 +7,7 @@ if (
7
7
  __clavueArgs[0] === "-v" ||
8
8
  __clavueArgs[0] === "-V")
9
9
  ) {
10
- console.log("10.9.6 (Clavue)");
10
+ console.log("10.9.8 (Clavue)");
11
11
  process.exit(0);
12
12
  }
13
13
  await import(new URL("./cli.js", import.meta.url).href);