Skip to content

Commit

Permalink
feat: log item errors in outro
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Jan 15, 2025
1 parent 778c35f commit b575f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create/src/cli/loggers/logOutro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`,
);
}
}
Expand Down

0 comments on commit b575f08

Please sign in to comment.