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 6ecacd8 commit 7c46916Copy full SHA for 7c46916
packages/cli/src/cli/index.ts
@@ -5,6 +5,7 @@ import { select } from "@inquirer/prompts";
5
import pkg from "../../package.json";
6
import { generate } from "commands/generate";
7
import { init } from "commands/init";
8
+import { handleError } from "utils/handle-error";
9
10
const program = new Command();
11
@@ -47,6 +48,7 @@ const main = async () => {
47
48
process.exit(0);
49
}
50
51
+ handleError(e);
52
process.exit(1);
53
54
};
0 commit comments