aem-ext-daemon 0.3.4 → 0.3.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.
@@ -46,6 +46,9 @@ export function exec(command, cwd) {
46
46
  encoding: "utf-8",
47
47
  shell: getUserShell(),
48
48
  env: getEnhancedEnv(),
49
+ // Pipe all stdio so interactive prompts don't bleed into the daemon terminal.
50
+ // stdin is /dev/null so commands that prompt for input fail fast instead of hanging.
51
+ stdio: ["pipe", "pipe", "pipe"],
49
52
  });
50
53
  return result;
51
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aem-ext-daemon",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Local daemon for AEM Extension Builder — connects your machine to the cloud UI",
5
5
  "type": "module",
6
6
  "bin": {