@nihit_dev/yoo 1.0.0 → 1.1.1

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,9 +1,9 @@
1
- # @nihitde_v/yoo
1
+ # @nihit_dev/yoo
2
2
 
3
3
  npm installer for the `yoo` local project and development-environment CLI.
4
4
 
5
5
  ```bash
6
- npm install -g @nihitde_v/yoo
6
+ npm install -g @nihit_dev/yoo
7
7
  yoo
8
8
  ```
9
9
 
package/bin/yoo.js CHANGED
@@ -8,7 +8,7 @@ const exe = process.platform === "win32" ? "yoo.exe" : "yoo";
8
8
  const binary = join(__dirname, "..", "vendor", exe);
9
9
 
10
10
  if (!existsSync(binary)) {
11
- console.error("yoo binary is missing. Try reinstalling @nihitde_v/yoo.");
11
+ console.error("yoo binary is missing. Try reinstalling @nihit_dev/yoo.");
12
12
  process.exit(1);
13
13
  }
14
14
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@nihit_dev/yoo",
3
- "version": "1.0.0",
3
+ "version": "1.1.1",
4
4
  "description": "Local CLI for project, Git, and development environment information.",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "homepage": "https://github.com/nihitdev/yo-cli#readme",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/nihitdev/yo-cli.git",
9
+ "url": "https://github.com/nihitdev/yo-cli",
10
10
  "directory": "packages/npm"
11
11
  },
12
12
  "bugs": {
@@ -17,7 +17,7 @@ function target() {
17
17
  const match = targets[key];
18
18
 
19
19
  if (!match) {
20
- throw new Error(`Unsupported platform for @nihitde_v/yoo: ${key}`);
20
+ throw new Error(`Unsupported platform for @nihit_dev/yoo: ${key}`);
21
21
  }
22
22
 
23
23
  return match;