terminator-mcp-agent 0.5.6 → 0.5.7
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/index.js +2 -2
- package/package.json +5 -5
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
const { spawn, execSync
|
|
3
|
+
const { spawn, execSync } = require("child_process");
|
|
4
4
|
const path = require("path");
|
|
5
5
|
const fs = require("fs");
|
|
6
6
|
const os = require("os");
|
|
@@ -317,7 +317,7 @@ if (argv.length === 0 || argv.includes("--start")) {
|
|
|
317
317
|
}
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
const child = spawn(binary, [], { stdio: ["pipe", "pipe", "
|
|
320
|
+
const child = spawn(binary, [], { stdio: ["pipe", "pipe", "pipe"], shell: true });
|
|
321
321
|
|
|
322
322
|
process.stdin.pipe(child.stdin);
|
|
323
323
|
child.stdout.pipe(process.stdout);
|
package/package.json
CHANGED
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
],
|
|
12
12
|
"name": "terminator-mcp-agent",
|
|
13
13
|
"optionalDependencies": {
|
|
14
|
-
"terminator-mcp-darwin-arm64": "0.5.
|
|
15
|
-
"terminator-mcp-darwin-x64": "0.5.
|
|
16
|
-
"terminator-mcp-linux-x64-gnu": "0.5.
|
|
17
|
-
"terminator-mcp-win32-x64-msvc": "0.5.
|
|
14
|
+
"terminator-mcp-darwin-arm64": "0.5.7",
|
|
15
|
+
"terminator-mcp-darwin-x64": "0.5.7",
|
|
16
|
+
"terminator-mcp-linux-x64-gnu": "0.5.7",
|
|
17
|
+
"terminator-mcp-win32-x64-msvc": "0.5.7"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"sync-version": "node ./utils/sync-version.js",
|
|
27
27
|
"update-badges": "node ./utils/update-badges.js"
|
|
28
28
|
},
|
|
29
|
-
"version": "0.5.
|
|
29
|
+
"version": "0.5.7"
|
|
30
30
|
}
|