@kithinji/pod 1.0.41 → 1.0.42
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/cli.js +6780 -0
- package/dist/cli.js.map +7 -0
- package/dist/index.js +1 -7
- package/dist/index.js.map +2 -2
- package/dist/types/cli.d.ts +3 -0
- package/dist/types/cli.d.ts.map +1 -0
- package/dist/types/index.d.ts +0 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
1
|
var __defProp = Object.defineProperty;
|
|
3
2
|
var __export = (target, all) => {
|
|
4
3
|
for (var name in all)
|
|
@@ -6769,9 +6768,8 @@ async function compileFiles(entryPoints) {
|
|
|
6769
6768
|
}
|
|
6770
6769
|
|
|
6771
6770
|
// src/index.ts
|
|
6772
|
-
import { fileURLToPath } from "url";
|
|
6773
6771
|
var program = new Command();
|
|
6774
|
-
program.name("pod").description("Pod cli tool").version("1.0.
|
|
6772
|
+
program.name("pod").description("Pod cli tool").version("1.0.42");
|
|
6775
6773
|
program.command("new <name> [type]").description("Start a new Orca Project").action(async (name, type) => {
|
|
6776
6774
|
const orca = async () => {
|
|
6777
6775
|
await addNew(name);
|
|
@@ -6838,10 +6836,6 @@ program.command("deploy").description("Deploy to a target environment").argument
|
|
|
6838
6836
|
process.exit(1);
|
|
6839
6837
|
}
|
|
6840
6838
|
});
|
|
6841
|
-
var isMainModule = process.argv[1] === fileURLToPath(import.meta.url);
|
|
6842
|
-
if (isMainModule) {
|
|
6843
|
-
program.parse(process.argv);
|
|
6844
|
-
}
|
|
6845
6839
|
export {
|
|
6846
6840
|
config_exports as config,
|
|
6847
6841
|
expandMacros,
|