buildwithnexus 0.3.7 → 0.3.8
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/bin.js +4 -1
- package/dist/nexus-release.tar.gz +0 -0
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -737,6 +737,7 @@ var init_ssh = __esm({
|
|
|
737
737
|
|
|
738
738
|
// src/cli.ts
|
|
739
739
|
import { Command as Command14 } from "commander";
|
|
740
|
+
import { createRequire } from "module";
|
|
740
741
|
|
|
741
742
|
// src/commands/init.ts
|
|
742
743
|
init_banner();
|
|
@@ -2834,7 +2835,9 @@ var shellCommand2 = new Command13("shell").description("Launch the interactive N
|
|
|
2834
2835
|
});
|
|
2835
2836
|
|
|
2836
2837
|
// src/cli.ts
|
|
2837
|
-
var
|
|
2838
|
+
var require2 = createRequire(import.meta.url);
|
|
2839
|
+
var { version } = require2("../package.json");
|
|
2840
|
+
var cli = new Command14().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version(version);
|
|
2838
2841
|
cli.addCommand(initCommand);
|
|
2839
2842
|
cli.addCommand(startCommand);
|
|
2840
2843
|
cli.addCommand(stopCommand);
|
|
Binary file
|