@simonyea/holysheep-cli 1.7.95 → 1.7.96
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/package.json +1 -1
- package/src/tools/openclaw.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simonyea/holysheep-cli",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.96",
|
|
4
4
|
"description": "Claude Code/Cursor/Cline API relay for China — ¥1=$1, WeChat/Alipay payment, no credit card, no VPN. One command setup for all AI coding tools.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openai-china",
|
package/src/tools/openclaw.js
CHANGED
|
@@ -64,6 +64,7 @@ function runWithRunner(runner, args, opts = {}) {
|
|
|
64
64
|
timeout: opts.timeout || 30000,
|
|
65
65
|
stdio: opts.stdio || 'pipe',
|
|
66
66
|
encoding: 'utf8',
|
|
67
|
+
windowsHide: true,
|
|
67
68
|
})
|
|
68
69
|
}
|
|
69
70
|
|
|
@@ -96,6 +97,7 @@ function spawnOpenClaw(args, opts = {}) {
|
|
|
96
97
|
const { preferNpx: _preferNpx, ...spawnOpts } = opts
|
|
97
98
|
return spawn(runner.cmd, [...runner.argsPrefix, ...args], {
|
|
98
99
|
shell: runner.shell,
|
|
100
|
+
windowsHide: true,
|
|
99
101
|
...spawnOpts,
|
|
100
102
|
})
|
|
101
103
|
}
|