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 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('Cache directory doesn\'t exist. Nothing to clean.'));
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zephyr-cli",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "CLI utility for Zephyr projects",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -28,4 +28,4 @@
28
28
  "@types/node": "^16.11.12",
29
29
  "typescript": "^4.5.4"
30
30
  }
31
- }
31
+ }