zephyr-cli 0.0.2 → 0.0.3
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 +2 -2
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ A command-line utility for Zephyr projects.
|
|
|
7
7
|
### Global Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g zephyr
|
|
10
|
+
npm install -g zephyr-cli
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
### Using npx
|
|
@@ -37,4 +37,4 @@ npx zephyr clean cache
|
|
|
37
37
|
```bash
|
|
38
38
|
npm install
|
|
39
39
|
npm run build
|
|
40
|
-
```
|
|
40
|
+
```
|
package/dist/index.js
CHANGED
|
@@ -46,7 +46,7 @@ function cleanCache() {
|
|
|
46
46
|
const cacheDir = (0, path_1.join)(homeDir, '.zephyr');
|
|
47
47
|
console.log(chalk_1.default.blue('🧹 Cleaning Zephyr cache...'));
|
|
48
48
|
if (!(0, fs_1.existsSync)(cacheDir)) {
|
|
49
|
-
console.log(chalk_1.default.yellow(
|
|
49
|
+
console.log(chalk_1.default.yellow("Cache directory doesn't exist. Nothing to clean."));
|
|
50
50
|
return;
|
|
51
51
|
}
|
|
52
52
|
try {
|
package/package.json
CHANGED