Preflight and integration npx (#1096)

This commit is contained in:
matt korwel
2025-06-16 08:27:29 -07:00
committed by GitHub
parent 4e68c48591
commit fbe69c2135
24 changed files with 703 additions and 73 deletions
+5 -1
View File
@@ -64,4 +64,8 @@ const env = {
DEV: 'true',
};
spawn('node', nodeArgs, { stdio: 'inherit', env });
const child = spawn('node', nodeArgs, { stdio: 'inherit', env });
child.on('close', (code) => {
process.exit(code);
});