UNPKG

lint-staged

Version:
13 lines (12 loc) 376 B
/** * Handle logging of listr `ctx.output` to the specified `logger` * @param {Object} ctx - The listr initial state * @param {Object} logger - The logger */ export const printTaskOutput = (ctx = {}, logger) => { if (!Array.isArray(ctx.output)) return const log = ctx.errors?.size > 0 ? logger.error : logger.log for (const line of ctx.output) { log(line) } }