From b575f088bf910ba9849d762b3c80a27f58c4ff2c Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Wed, 15 Jan 2025 16:39:26 -0500 Subject: [PATCH] feat: log item errors in outro --- packages/create/src/cli/loggers/logOutro.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/create/src/cli/loggers/logOutro.ts b/packages/create/src/cli/loggers/logOutro.ts index 7270a3da..46b043cf 100644 --- a/packages/create/src/cli/loggers/logOutro.ts +++ b/packages/create/src/cli/loggers/logOutro.ts @@ -17,7 +17,7 @@ export function logOutro( for (const [id, item] of Object.entries(groupItems)) { if (item.error) { prompts.log.warn( - `The ${chalk.red(id)} ${group} failed. You should re-run it and fix its complaints.`, + `The ${chalk.red(id)} ${group} failed. You should re-run it and fix its complaints.\n${item.error as string}`, ); } }