mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
* New: Webpack 4 * New: Gulp 4 * New: Transpile UI for old browsers Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
const colors = require('ansi-colors');
|
|
|
|
module.exports = function errorHandler(error) {
|
|
console.log(colors.red(`Error (${error.plugin}): ${error.message}`));
|
|
this.emit('end');
|
|
};
|