/** * @desc copy from vue */ import chalk from 'chalk'; import stripAnsi from 'strip-ansi'; import * as readline from 'readline'; import { EventEmitter } from 'events'; const events = new EventEmitter(); function _log(type, tag, message) { if (process.env.VUE_CLI_API_MODE && message) { events.emit('log', { message, type, tag }); } } const format = (label, msg) => { return msg.split('\n').map((line, i) => { return i === 0 ? `${label} ${line}` : line.padStart(stripAnsi(label).length); }).join('\n'); }; const chalkTag = msg => chalk.bgBlackBright.white.dim(` ${msg} `); const log = (msg = '', tag = null) => { tag ? console.log(format(chalkTag(tag), msg)) : console.log(msg); _log('log', tag, msg); }; const info = (msg, tag = null) => { console.log(format(chalk.bgBlue.black(' INFO ') + (tag ? chalkTag(tag) : ''), msg)); _log('info', tag, msg); }; const done = (msg, tag = null) => { console.log(format(chalk.bgGreen.black(' DONE ') + (tag ? chalkTag(tag) : ''), msg)); _log('done', tag, msg); }; const warn = (msg, tag = null) => { console.warn(format(chalk.bgYellow.black(' WARN ') + (tag ? chalkTag(tag) : ''), chalk.yellow(msg))); _log('warn', tag, msg); }; const error = (msg, tag = null) => { console.error(format(chalk.bgRed(' ERROR ') + (tag ? chalkTag(tag) : ''), chalk.red(msg))); _log('error', tag, msg); if (msg instanceof Error) { console.error(msg.stack); _log('error', tag, msg.stack); } }; const clearConsole = title => { if (process.stdout.isTTY) { const blank = '\n'.repeat(process.stdout.rows); console.log(blank); readline.cursorTo(process.stdout, 0, 0); readline.clearScreenDown(process.stdout); if (title) { console.log(title); } } }; export const logger = { log, info, done, warn, error, clearConsole };