buildwithnexus 0.2.1 → 0.2.2
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 +3 -3
- package/dist/nexus-release.tar.gz +0 -0
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -16,7 +16,7 @@ var BANNER = `
|
|
|
16
16
|
`;
|
|
17
17
|
function showBanner() {
|
|
18
18
|
console.log(BANNER);
|
|
19
|
-
console.log(chalk.dim(" v0.2.
|
|
19
|
+
console.log(chalk.dim(" v0.2.2 \xB7 buildwithnexus.dev\n"));
|
|
20
20
|
}
|
|
21
21
|
function showPhase(phase, total, description) {
|
|
22
22
|
const progress = chalk.cyan(`[${phase}/${total}]`);
|
|
@@ -474,7 +474,7 @@ async function isQemuInstalled(platform) {
|
|
|
474
474
|
}
|
|
475
475
|
async function installQemu(platform) {
|
|
476
476
|
if (platform.os === "mac") {
|
|
477
|
-
await execa("brew", ["install", "qemu"], { stdio: "inherit", env: scrubEnv() });
|
|
477
|
+
await execa("brew", ["install", "qemu", "cdrtools"], { stdio: "inherit", env: scrubEnv() });
|
|
478
478
|
} else if (platform.os === "linux") {
|
|
479
479
|
try {
|
|
480
480
|
await execa("sudo", ["apt-get", "update"], { stdio: "inherit", env: scrubEnv() });
|
|
@@ -1591,7 +1591,7 @@ var brainstormCommand = new Command11("brainstorm").description("Brainstorm an i
|
|
|
1591
1591
|
});
|
|
1592
1592
|
|
|
1593
1593
|
// src/cli.ts
|
|
1594
|
-
var cli = new Command12().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version("0.2.
|
|
1594
|
+
var cli = new Command12().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version("0.2.2");
|
|
1595
1595
|
cli.addCommand(initCommand);
|
|
1596
1596
|
cli.addCommand(startCommand);
|
|
1597
1597
|
cli.addCommand(stopCommand);
|
|
Binary file
|