我想在由 node.js 生成的 jenkins 中显示彩色输出
两者分开工作,但不结合:
节点脚本我的测试脚本 test.js:
console.log(require("chalk").red("Node Red"))
在shell中调用测试脚本有效:
node test.js => OK
在jenkins中调用彩色 shell 脚本有效:
echo -e "\033[31mShell Red\033[0m" => OK
但是在jenkins中调用节点脚本不会显示任何颜色:
node test.js => No Color, when executed in jenkins