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 db1bde4 commit 6b33078Copy full SHA for 6b33078
1 file changed
packages/commandkit/src/cli/build.ts
@@ -242,7 +242,9 @@ async function bootstrap() {
242
}
243
244
await bootstrap().catch((e) => {
245
- console.error('Failed to bootstrap CommandKit application:\\n', e.stack);
+ const error = new Error('Failed to bootstrap the application', { cause: e });
246
+ console.error(error);
247
+ console.error(\`Caused by \${e?.stack || e}\`);
248
})
249
`;
250
0 commit comments