@ozyman42/ozy-cli 0.0.4 → 0.0.5

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 +13 -2
  2. package/package.json +1 -1
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.4";
2787
+ var version = "0.0.5";
2788
2788
 
2789
2789
  // node_modules/commander/esm.mjs
2790
2790
  var import__ = __toESM(require_commander(), 1);
@@ -8446,9 +8446,20 @@ var git = new Command("git").summary("setup git in repo for verified commits");
8446
8446
  git.addCommand(cmd);
8447
8447
  });
8448
8448
 
8449
+ // src/commands/npm/setup.ts
8450
+ var setup2 = makeCommand("setup", "configure a new npm package for publishing", async () => {
8451
+ return Ok(true);
8452
+ });
8453
+
8454
+ // src/commands/npm/index.ts
8455
+ var npm = new Command("npm").summary("npm package management utilities");
8456
+ [setup2].forEach((cmd) => {
8457
+ npm.addCommand(cmd);
8458
+ });
8459
+
8449
8460
  // src/commands/index.ts
8450
8461
  program.name("ozy").version(version);
8451
- [git].forEach((cmd) => {
8462
+ [git, npm].forEach((cmd) => {
8452
8463
  program.addCommand(cmd);
8453
8464
  });
8454
8465
  program.parse();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ozyman42/ozy-cli",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Ozymandias' personal tools",
5
5
  "type": "module",
6
6
  "bin": {