@ozyman42/ozy-cli 0.0.3 → 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.
- package/dist/index.js +14 -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.
|
|
2787
|
+
var version = "0.0.5";
|
|
2788
2788
|
|
|
2789
2789
|
// node_modules/commander/esm.mjs
|
|
2790
2790
|
var import__ = __toESM(require_commander(), 1);
|
|
@@ -8446,8 +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
|
-
program.name("ozy").version(version)
|
|
8461
|
+
program.name("ozy").version(version);
|
|
8462
|
+
[git, npm].forEach((cmd) => {
|
|
8451
8463
|
program.addCommand(cmd);
|
|
8452
8464
|
});
|
|
8453
8465
|
program.parse();
|