@citadel-labs/beads-ui 2.0.0 → 2.0.1

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.
@@ -161,6 +161,7 @@ if (foreground) {
161
161
  detached: true,
162
162
  stdio: 'ignore',
163
163
  env,
164
+ windowsHide: true,
164
165
  });
165
166
  child.unref();
166
167
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citadel-labs/beads-ui",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Kanban dashboard and git log viewer for Beads",
5
5
  "bin": {
6
6
  "bdui": "bin/beads-board.js"
package/server/index.js CHANGED
@@ -26,7 +26,7 @@ const PROJECT_DIR = process.argv[2] || process.cwd();
26
26
 
27
27
  function execCmd(cmd, args, cwd) {
28
28
  return new Promise((resolve, reject) => {
29
- execFile(cmd, args, { cwd, timeout: 10000 }, (err, stdout, stderr) => {
29
+ execFile(cmd, args, { cwd, timeout: 10000, windowsHide: true }, (err, stdout, stderr) => {
30
30
  if (err) {
31
31
  reject(new Error(`${cmd} ${args.join(' ')} failed: ${stderr || err.message}`));
32
32
  return;