Send standard output/input from npm-sub.js to the parent proc

This commit is contained in:
Travis Ralston 2018-09-25 15:54:38 -06:00
parent 91304e70a1
commit 4041f3db5c

View file

@ -18,4 +18,5 @@ const modulePath = path.dirname(require.resolve(`${moduleName}/package.json`));
child_process.execSync("npm " + argString, {
env: process.env,
cwd: modulePath,
stdio: ['inherit', 'inherit', 'inherit'],
});