buildwithnexus 0.8.1 → 0.8.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 +2 -2
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -918,7 +918,7 @@ async function startBackend() {
|
|
|
918
918
|
const path11 = await import("path");
|
|
919
919
|
const nexusDir = path11.join(os5.homedir(), "Projects", "nexus");
|
|
920
920
|
log.step(`Starting Nexus backend from ${nexusDir}...`);
|
|
921
|
-
const child = spawn2("python3", ["-m", "src.
|
|
921
|
+
const child = spawn2("python3", ["-m", "src.deep_agents_server"], {
|
|
922
922
|
cwd: nexusDir,
|
|
923
923
|
detached: true,
|
|
924
924
|
stdio: "ignore",
|
|
@@ -1593,7 +1593,7 @@ init_secrets();
|
|
|
1593
1593
|
init_docker();
|
|
1594
1594
|
|
|
1595
1595
|
// src/core/version.ts
|
|
1596
|
-
var resolvedVersion = true ? "0.8.
|
|
1596
|
+
var resolvedVersion = true ? "0.8.2" : pkg.version;
|
|
1597
1597
|
|
|
1598
1598
|
// src/cli/interactive.ts
|
|
1599
1599
|
var appVersion = resolvedVersion;
|