UNPKG

@fxext/cli

Version:

fanxing miniapp cli

14 lines (12 loc) 221 B
const chalk = require('chalk'); module.exports = { error(text) { console.log(chalk.red(text)); }, info(text) { console.log(chalk.gray(text)); }, hint(text) { console.log(chalk.green(text)); }, };