Compare commits

..

No commits in common. "main" and "v1.0.1" have entirely different histories.
main ... v1.0.1

2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "nman", "name": "nman",
"version": "1.0.2", "version": "1.0.1",
"description": "", "description": "",
"main": "dist/nman.js", "main": "dist/nman.js",
"types": "dist/nman.d.ts", "types": "dist/nman.d.ts",

View file

@ -49,7 +49,7 @@ export const shutdown = async () => {
const tasks = prios[i][1]; const tasks = prios[i][1];
await Promise.allSettled(tasks.map(t => shutdownSingle(t))); await Promise.allSettled(tasks.map(t => shutdownSingle(t)));
} }
setTimeout(() => process.exit(0), 500); process.exit(0);
}; };
export default { shutdown, addShutdownTask }; export default { shutdown, addShutdownTask };