@brierb/brier-cli 0.0.8 → 0.0.10

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.
@@ -76,7 +76,9 @@ export const createTaskExecutor = (callbacks) => {
76
76
  child = spawn(cmd, args, {
77
77
  cwd: task.cwd,
78
78
  env: childEnv,
79
- stdio: ['pipe', 'pipe', 'pipe'],
79
+ // stdin ignore:任务输入全部来自 prompt/command 参数,runtime 无交互输入。
80
+ // 若用 pipe 且不关闭,TUI 类 runtime(opencode 等)会因 stdin 永不 EOF 而挂起不执行。
81
+ stdio: ['ignore', 'pipe', 'pipe'],
80
82
  });
81
83
  }
82
84
  catch (err) {
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brierb/brier-cli",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Brier 平台接入命令行工具:通过加密隧道将本机接入 Brier 远程编码池,接收并执行远程任务",
5
5
  "keywords": [
6
6
  "brier",