update deps, migrate to pnpm

This commit is contained in:
Jorrin
2024-03-29 21:23:32 +01:00
parent f8a5120064
commit 21f1fd3cee
35 changed files with 15210 additions and 25328 deletions

View File

@@ -179,7 +179,11 @@ async function runCommandLine() {
}
if (process.argv.length === 2) {
runQuestions().catch(() => console.error('Exited.'));
runQuestions()
.catch(() => console.error('Exited.'))
.finally(() => process.exit(0));
} else {
runCommandLine().catch(() => console.error('Exited.'));
runCommandLine()
.catch(() => console.error('Exited.'))
.finally(() => process.exit(0));
}