We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c0097f commit 2cb815bCopy full SHA for 2cb815b
packages/cli/src/index.ts
@@ -4,3 +4,7 @@ import { cli } from './lib/cli.js';
4
5
// bootstrap Yargs, parse arguments and execute command
6
await cli(hideBin(process.argv)).argv;
7
+
8
+// we need to explicitly exit with successful code otherwise we risk hanging process in certain situations
9
+// eslint-disable-next-line n/no-process-exit
10
+process.exit(0);
0 commit comments