Chalk在Firebase日志中没有记录颜色,我在firebase functions:log
得到它,因为粉笔应该有一些颜色;但它没有被应用。
我100%确定安装了粉笔。
示例:
import chalk from "chalk";
const success = chalk.greenBright;
success("Kabul lobisi oluşturuluyor..");
答案 0 :(得分:2)
根据Chalk documentation,你应该使用:
console.log(success("Kabul lobisi oluşturuluyor.."));
这些电话仍然包含在console.log(...)
。