add extra line between errors

This commit is contained in:
Yann Braga 2022-12-14 19:24:28 +01:00
parent 7bdb4a053b
commit 6ce37fafa2

View File

@ -119,7 +119,7 @@ function getMigrationSummary(fixResults: Record<string, FixStatus>, fixSummary:
let failedFixesMessage = Object.keys(fixSummary.failed).length > 0
? `
${chalk.bold('Migrations that failed:')}\n ${Object.entries(fixSummary.failed).reduce((acc, [id, error]) => {
return acc + `\n${chalk.redBright(id)}:\n${error}`;
return acc + `\n${chalk.redBright(id)}:\n${error}\n`;
}, '')}
\n`
: '';