@ozyman42/ozy-cli 0.0.2 → 0.0.4

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -2784,7 +2784,7 @@ var require_ssh_config2 = __commonJS((exports) => {
2784
2784
  exports.default = ssh_config_1.default;
2785
2785
  });
2786
2786
  // package.json
2787
- var version = "0.0.2";
2787
+ var version = "0.0.4";
2788
2788
 
2789
2789
  // node_modules/commander/esm.mjs
2790
2790
  var import__ = __toESM(require_commander(), 1);
@@ -8447,7 +8447,8 @@ var git = new Command("git").summary("setup git in repo for verified commits");
8447
8447
  });
8448
8448
 
8449
8449
  // src/commands/index.ts
8450
- program.name("ozy").version(version)[git].forEach((cmd) => {
8450
+ program.name("ozy").version(version);
8451
+ [git].forEach((cmd) => {
8451
8452
  program.addCommand(cmd);
8452
8453
  });
8453
8454
  program.parse();
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@ozyman42/ozy-cli",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Ozymandias' personal tools",
5
5
  "type": "module",
6
6
  "bin": {
7
- "ozy": "./dist/index.js"
7
+ "ozy": "dist/index.js"
8
8
  },
9
9
  "files": [
10
10
  "dist"
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "repository": {
28
28
  "type": "git",
29
- "url": "https://github.com/ozyman42/ozy-cli.git"
29
+ "url": "git+https://github.com/ozyman42/ozy-cli.git"
30
30
  },
31
31
  "dependencies": {
32
32
  "commander": "^13.1.0",