@lelouchhe/webagent 0.2.4 → 0.2.5

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.
Files changed (2) hide show
  1. package/lib/daemon.js +1 -1
  2. package/package.json +1 -1
package/lib/daemon.js CHANGED
@@ -204,7 +204,7 @@ function runSupervisor(serverArgs) {
204
204
  let timer = null;
205
205
  function spawnServer() {
206
206
  lastStart = Date.now();
207
- child = spawn(process.execPath, [serverJs, ...serverArgs], { stdio: "inherit" });
207
+ child = spawn(process.execPath, [serverJs, ...serverArgs], { stdio: "inherit", windowsHide: true });
208
208
  child.on("exit", onChildExit);
209
209
  }
210
210
  function onChildExit(code, signal) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lelouchhe/webagent",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "A terminal-style web UI for ACP-compatible agents",
5
5
  "type": "module",
6
6
  "license": "MIT",