iclavue 12.0.11 → 12.0.13

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 v12.0.11
1
+ # Clavue v12.0.13
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/iclavue/image.png)
4
4
 
@@ -18,13 +18,13 @@ curl -fsSL https://www.clavue.com/cli/install.sh | bash
18
18
  Or pin a version:
19
19
 
20
20
  ```bash
21
- curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 12.0.11
21
+ curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 12.0.13
22
22
  ```
23
23
 
24
24
  Classic npm:
25
25
 
26
26
  ```bash
27
- npm install -g iclavue@12.0.11
27
+ npm install -g iclavue@12.0.13
28
28
  ```
29
29
 
30
30
 
@@ -91,8 +91,8 @@ npx -y iclavue
91
91
  Run a specific version with `npx`:
92
92
 
93
93
  ```bash
94
- npx -y iclavue@12.0.11 --version
95
- npx -y iclavue@12.0.11
94
+ npx -y iclavue@12.0.13 --version
95
+ npx -y iclavue@12.0.13
96
96
  ```
97
97
 
98
98
  Install globally from npm when you want the `clavue` command to stay available:
@@ -112,7 +112,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
112
112
  Install a specific version globally:
113
113
 
114
114
  ```bash
115
- curl -fsSL https://unpkg.com/iclavue@12.0.11/install.sh | bash -s -- 12.0.11
115
+ curl -fsSL https://unpkg.com/iclavue@12.0.13/install.sh | bash -s -- 12.0.13
116
116
  ```
117
117
 
118
118
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -261,7 +261,7 @@ Version check:
261
261
  ```bash
262
262
  clavue --version
263
263
  npx -y iclavue --version
264
- npx -y iclavue@12.0.11 --version
264
+ npx -y iclavue@12.0.13 --version
265
265
  # available after a global install and launcher setup
266
266
  clavue --version
267
267
  ```
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("12.0.11 (Clavue)");
19
+ console.log("12.0.13 (Clavue)");
20
20
  const __detail =
21
21
  __clavueArgs.includes('--detail') ||
22
22
  __clavueArgs.includes('--path') ||