Compare commits

...

2 Commits

Author SHA1 Message Date
Dave Hadka aa08592228 Remove exit code 2020-07-14 12:56:41 -05:00
Dave Hadka 0b0791e3bf Exit after run to prevent hanging if there are active listeners 2020-07-14 11:49:23 -05:00
4 changed files with 4 additions and 4 deletions

View File

@ -6877,7 +6877,7 @@ function run() {
}
});
}
run();
run().then(() => process.exit());
exports.default = run;

2
dist/save/index.js vendored
View File

@ -6631,7 +6631,7 @@ function run() {
}
});
}
run();
run().then(() => process.exit());
exports.default = run;

View File

@ -60,6 +60,6 @@ async function run(): Promise<void> {
}
}
run();
run().then(() => process.exit());
export default run;

View File

@ -51,6 +51,6 @@ async function run(): Promise<void> {
}
}
run();
run().then(() => process.exit());
export default run;