You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
428 B
16 lines
428 B
import {addAbortListener} from 'node:events';
|
|
import {onExit} from 'signal-exit';
|
|
|
|
// If the `cleanup` option is used, call `subprocess.kill()` when the parent process exits
|
|
export const cleanupOnExit = (subprocess, {cleanup, detached}, {signal}) => {
|
|
if (!cleanup || detached) {
|
|
return;
|
|
}
|
|
|
|
const removeExitHandler = onExit(() => {
|
|
subprocess.kill();
|
|
});
|
|
addAbortListener(signal, () => {
|
|
removeExitHandler();
|
|
});
|
|
};
|