Files
Prowlarr-Prowlarr/frontend/gulp/helpers/errorHandler.js
2019-06-11 22:07:34 -04:00

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');
};