@kithinji/pod 1.0.41 → 1.0.43

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 CHANGED
@@ -6769,9 +6769,8 @@ async function compileFiles(entryPoints) {
6769
6769
  }
6770
6770
 
6771
6771
  // src/index.ts
6772
- import { fileURLToPath } from "url";
6773
6772
  var program = new Command();
6774
- program.name("pod").description("Pod cli tool").version("1.0.41");
6773
+ program.name("pod").description("Pod cli tool").version("1.0.42");
6775
6774
  program.command("new <name> [type]").description("Start a new Orca Project").action(async (name, type) => {
6776
6775
  const orca = async () => {
6777
6776
  await addNew(name);
@@ -6838,10 +6837,7 @@ program.command("deploy").description("Deploy to a target environment").argument
6838
6837
  process.exit(1);
6839
6838
  }
6840
6839
  });
6841
- var isMainModule = process.argv[1] === fileURLToPath(import.meta.url);
6842
- if (isMainModule) {
6843
- program.parse(process.argv);
6844
- }
6840
+ program.parse(process.argv);
6845
6841
  export {
6846
6842
  config_exports as config,
6847
6843
  expandMacros,
@@ -6852,7 +6848,6 @@ export {
6852
6848
  macros_exports as macros,
6853
6849
  mergeConfig,
6854
6850
  plugins_exports as plugins,
6855
- program,
6856
6851
  resetGlobalMacroGraph,
6857
6852
  store_exports as store,
6858
6853
  stylePlugin,