buildwithnexus 0.7.0 → 0.7.1
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
|
@@ -156,7 +156,7 @@ function getVersion() {
|
|
|
156
156
|
const packageJson = JSON.parse(readFileSync(packagePath, "utf-8"));
|
|
157
157
|
return packageJson.version;
|
|
158
158
|
} catch {
|
|
159
|
-
return true ? "0.7.
|
|
159
|
+
return true ? "0.7.1" : "0.0.0-unknown";
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
function showBanner() {
|
|
@@ -3559,7 +3559,7 @@ function getVersionStatic() {
|
|
|
3559
3559
|
const packageJson = JSON.parse(readFileSync2(packagePath, "utf-8"));
|
|
3560
3560
|
return packageJson.version;
|
|
3561
3561
|
} catch {
|
|
3562
|
-
return true ? "0.7.
|
|
3562
|
+
return true ? "0.7.1" : "0.0.0-unknown";
|
|
3563
3563
|
}
|
|
3564
3564
|
}
|
|
3565
3565
|
var cli = new Command15().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version(getVersionStatic());
|
|
@@ -3680,7 +3680,7 @@ import os5 from "os";
|
|
|
3680
3680
|
import path11 from "path";
|
|
3681
3681
|
var homeEnvPath = path11.join(os5.homedir(), ".env.local");
|
|
3682
3682
|
dotenv2.config({ path: homeEnvPath });
|
|
3683
|
-
var version = true ? "0.7.
|
|
3683
|
+
var version = true ? "0.7.1" : "0.5.17";
|
|
3684
3684
|
checkForUpdates(version);
|
|
3685
3685
|
program.name("buildwithnexus").description("Nexus - AI-Powered Task Execution").version(version);
|
|
3686
3686
|
program.command("da-init").description("Initialize Nexus (set up API keys and .env.local)").action(deepAgentsInitCommand);
|