iclavue 10.4.3 → 10.4.4

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.4.3
1
+ # Clavue v10.4.4
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/iclavue/image.png)
4
4
 
@@ -67,8 +67,8 @@ npx -y iclavue
67
67
  Run a specific version with `npx`:
68
68
 
69
69
  ```bash
70
- npx -y iclavue@10.4.3 --version
71
- npx -y iclavue@10.4.3
70
+ npx -y iclavue@10.4.4 --version
71
+ npx -y iclavue@10.4.4
72
72
  ```
73
73
 
74
74
  Install globally from npm when you want the `clavue` command to stay available:
@@ -88,7 +88,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
88
88
  Install a specific version globally:
89
89
 
90
90
  ```bash
91
- curl -fsSL https://unpkg.com/iclavue@10.4.3/install.sh | bash -s -- 10.4.3
91
+ curl -fsSL https://unpkg.com/iclavue@10.4.4/install.sh | bash -s -- 10.4.4
92
92
  ```
93
93
 
94
94
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -237,7 +237,7 @@ Version check:
237
237
  ```bash
238
238
  clavue --version
239
239
  npx -y iclavue --version
240
- npx -y iclavue@10.4.3 --version
240
+ npx -y iclavue@10.4.4 --version
241
241
  # available after a global install and launcher setup
242
242
  clavue --version
243
243
  ```
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.4.3 (Clavue)");
10
+ console.log("10.4.4 (Clavue)");
11
11
  process.exit(0);
12
12
  }
13
13
  await import(new URL("./cli.js", import.meta.url).href);