Initial project import
This commit is contained in:
15
node_modules/concurrently/dist/lib/flow-control/log-exit.js
generated
vendored
Normal file
15
node_modules/concurrently/dist/lib/flow-control/log-exit.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* Logs the exit code/signal of commands.
|
||||
*/
|
||||
export class LogExit {
|
||||
logger;
|
||||
constructor({ logger }) {
|
||||
this.logger = logger;
|
||||
}
|
||||
handle(commands) {
|
||||
commands.forEach((command) => command.close.subscribe(({ exitCode }) => {
|
||||
this.logger.logCommandEvent(`${command.command} exited with code ${exitCode}`, command);
|
||||
}));
|
||||
return { commands };
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user