iclavue 10.12.26 → 10.12.28

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.12.26
1
+ # Clavue v10.12.28
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/iclavue/image.png)
4
4
 
@@ -24,7 +24,7 @@ curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 10.12.26
24
24
  Classic npm:
25
25
 
26
26
  ```bash
27
- npm install -g iclavue@10.12.26
27
+ npm install -g iclavue@10.12.28
28
28
  ```
29
29
 
30
30
 
@@ -89,8 +89,8 @@ npx -y iclavue
89
89
  Run a specific version with `npx`:
90
90
 
91
91
  ```bash
92
- npx -y iclavue@10.12.26 --version
93
- npx -y iclavue@10.12.26
92
+ npx -y iclavue@10.12.28 --version
93
+ npx -y iclavue@10.12.28
94
94
  ```
95
95
 
96
96
  Install globally from npm when you want the `clavue` command to stay available:
@@ -110,7 +110,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
110
110
  Install a specific version globally:
111
111
 
112
112
  ```bash
113
- curl -fsSL https://unpkg.com/iclavue@10.12.26/install.sh | bash -s -- 10.12.26
113
+ curl -fsSL https://unpkg.com/iclavue@10.12.28/install.sh | bash -s -- 10.12.26
114
114
  ```
115
115
 
116
116
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -259,7 +259,7 @@ Version check:
259
259
  ```bash
260
260
  clavue --version
261
261
  npx -y iclavue --version
262
- npx -y iclavue@10.12.26 --version
262
+ npx -y iclavue@10.12.28 --version
263
263
  # available after a global install and launcher setup
264
264
  clavue --version
265
265
  ```
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.12.26 (Clavue)");
10
+ console.log("10.12.28 (Clavue)");
11
11
  process.exit(0);
12
12
  }
13
13
  await import(new URL("./cli.js", import.meta.url).href);