Skip to content

Commit 119316e

Browse files
Logan WhitlaM-Zuber
Logan Whitla
authored andcommitted
Changed inherit flag to set stderr as inherit instead of pipe
1 parent 9e17145 commit 119316e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

watch-package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ function startScript(script, pkg, processes, setMaxListeners, scriptsCount) {
164164
var proc = processes[script] = spawn(nodemon, args, {
165165
env: process.env,
166166
cwd: pkgDir,
167-
stdio: inherit === true ? ['pipe', 'inherit', 'pipe'] : 'pipe'
167+
stdio: inherit === true ? ['pipe', 'inherit', 'inherit'] : 'pipe'
168168
})
169169
if (inherit === true) return;
170170

0 commit comments

Comments
 (0)