We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i interrupt below typescript code by press Ctrl+C
Spawned child process living despite of parent process interrupted.
// test.ts import {spawn} from 'child_process'; spawn('npx', ['ng', 'serve'], {stdio: 'inherit'});
I tested ts-node v4.1.0, node v8.9.1, typescript v2.4.2 environment.
I tested same code with native javascript and execute by node command with below code
node
Child process killed successfully after parent process interrupted.
// test.js require('child_process').spawn('npx', ['ng', 'serve'], {stdio: 'inherit'});
The text was updated successfully, but these errors were encountered:
Seems related to #519 and #419 😢
Sorry, something went wrong.
Closing with the deletion of child processes in #536.
No branches or pull requests
When i interrupt below typescript code by press Ctrl+C
Spawned child process living despite of parent process interrupted.
I tested ts-node v4.1.0, node v8.9.1, typescript v2.4.2 environment.
I tested same code with native javascript and execute by
node
command with below codeChild process killed successfully after parent process interrupted.
The text was updated successfully, but these errors were encountered: