UNPKG

264 BJavaScriptView Raw
1var chalk = require('chalk');
2
3// Print out errors
4function printErrors(summary, errors) {
5 console.log(chalk.red(summary));
6 console.log();
7 errors.forEach(err => {
8 console.log(err.message || err);
9 console.log();
10 });
11}
12
13module.exports = printErrors;