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.
2 parents 11b379a + 256799f commit 2d1450cCopy full SHA for 2d1450c
lib/index.js
@@ -139,7 +139,9 @@ module.exports = function( args, options ) {
139
140
if ( packagesWithError.size ) {
141
const repositoryForm = packagesWithError.size === 1 ? 'repository' : 'repositories';
142
- const message = `\n❗❗❗ The command failed to execute in ${ packagesWithError.size } ${ repositoryForm }.\n`;
+ let message = `\n❗❗❗ The command failed to execute in ${ packagesWithError.size } ${ repositoryForm }:\n`;
143
+ message += [ ...packagesWithError ].map( pkgName => ` - ${ pkgName }` ).join( '\n' );
144
+ message += '\n';
145
146
console.log( chalk.red( message ) );
147
process.exit( 1 );
0 commit comments