buildwithnexus 0.6.18 → 0.6.19
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/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -161,7 +161,7 @@ function getVersion() {
|
|
|
161
161
|
const packageJson = JSON.parse(readFileSync(packagePath, "utf-8"));
|
|
162
162
|
return packageJson.version;
|
|
163
163
|
} catch {
|
|
164
|
-
return true ? "0.6.
|
|
164
|
+
return true ? "0.6.19" : "0.0.0-unknown";
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
167
|
function showBanner() {
|
|
@@ -3520,7 +3520,7 @@ function getVersionStatic() {
|
|
|
3520
3520
|
const packageJson = JSON.parse(readFileSync2(packagePath, "utf-8"));
|
|
3521
3521
|
return packageJson.version;
|
|
3522
3522
|
} catch {
|
|
3523
|
-
return true ? "0.6.
|
|
3523
|
+
return true ? "0.6.19" : "0.0.0-unknown";
|
|
3524
3524
|
}
|
|
3525
3525
|
}
|
|
3526
3526
|
var cli = new Command15().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version(getVersionStatic());
|
|
@@ -3641,7 +3641,7 @@ import os5 from "os";
|
|
|
3641
3641
|
import path11 from "path";
|
|
3642
3642
|
var homeEnvPath = path11.join(os5.homedir(), ".env.local");
|
|
3643
3643
|
dotenv2.config({ path: homeEnvPath });
|
|
3644
|
-
var version = true ? "0.6.
|
|
3644
|
+
var version = true ? "0.6.19" : "0.5.17";
|
|
3645
3645
|
checkForUpdates(version);
|
|
3646
3646
|
program.name("buildwithnexus").description("Nexus - AI-Powered Task Execution").version(version);
|
|
3647
3647
|
program.command("da-init").description("Initialize Nexus (set up API keys and .env.local)").action(deepAgentsInitCommand);
|