buildwithnexus 0.4.3 → 0.4.4
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
|
@@ -739,6 +739,7 @@ var init_ssh = __esm({
|
|
|
739
739
|
|
|
740
740
|
// src/cli.ts
|
|
741
741
|
import { Command as Command14 } from "commander";
|
|
742
|
+
import { createRequire } from "module";
|
|
742
743
|
|
|
743
744
|
// src/commands/init.ts
|
|
744
745
|
init_banner();
|
|
@@ -2846,7 +2847,9 @@ var shellCommand2 = new Command13("shell").description("Launch the interactive N
|
|
|
2846
2847
|
});
|
|
2847
2848
|
|
|
2848
2849
|
// src/cli.ts
|
|
2849
|
-
var
|
|
2850
|
+
var _require = createRequire(import.meta.url);
|
|
2851
|
+
var { version } = _require("../package.json");
|
|
2852
|
+
var cli = new Command14().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version(version);
|
|
2850
2853
|
cli.addCommand(initCommand);
|
|
2851
2854
|
cli.addCommand(startCommand);
|
|
2852
2855
|
cli.addCommand(stopCommand);
|
|
Binary file
|