nexus-prime 7.9.35 → 7.9.36
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/binary-shim.js +2 -0
- package/package.json +1 -1
package/dist/binary-shim.js
CHANGED
|
@@ -17,9 +17,11 @@ async function main() {
|
|
|
17
17
|
console.log(`[nexus-prime] binary ${verb}: ${result.binaryPath}`);
|
|
18
18
|
return;
|
|
19
19
|
}
|
|
20
|
+
const needsWindowsShell = process.platform === 'win32' && /\.(?:cmd|bat)$/i.test(result.binaryPath);
|
|
20
21
|
const child = spawnSync(result.binaryPath, forwardedArgs, {
|
|
21
22
|
stdio: 'inherit',
|
|
22
23
|
env: process.env,
|
|
24
|
+
shell: needsWindowsShell,
|
|
23
25
|
});
|
|
24
26
|
if (child.error)
|
|
25
27
|
throw child.error;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexus-prime",
|
|
3
|
-
"version": "7.9.
|
|
3
|
+
"version": "7.9.36",
|
|
4
4
|
"description": "Local-first MCP control plane for coding agents with bootstrap-orchestrate execution, memory fabric, token budgeting, and worktree-backed swarms (binary installer shim)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|