blob: 78a460f3b6229c549a0b04f3ceb906a2a50853f6 [file] [log] [blame]
const ProgressReporter = require('./progress')
const BaseColorReporter = require('./base_color')
function ProgressColorReporter (formatError, reportSlow, useColors, browserConsoleLogOptions) {
ProgressReporter.call(this, formatError, reportSlow, useColors, browserConsoleLogOptions)
BaseColorReporter.call(this)
this.EXCLUSIVELY_USE_COLORS = true
}
// PUBLISH
module.exports = ProgressColorReporter