chalk.config.js 228 Bytes 编辑Web IDE 1 2 3 4 5 6 7 8 9 10 11 12 // // 粉笔: // 输出不同颜色的提示信息 const chalk = require('chalk'); module.exports = { chalkError: chalk.red, chalkSuccess: chalk.green, chalkWarning: chalk.yellow, chalkProcessing: chalk.blue, };