diff --git a/src/index.ts b/src/index.ts index 3958836..bd83a9f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,10 +20,11 @@ async function main() { project.finished(ctx); } -main() -.catch((e) => { +main().catch((e) => { console.log( - `\n ${chalk.blue("Something went wrong:")} ${chalk.red(formatError(e))}\n` + `\n ${chalk.blue("Something went wrong:")} ${chalk.red(formatError(e))}\n`, ); process.exit(1); }); + +//