运行 npm 脚本时如何在标准输出中禁用纱线错误日志
how to disable yarn error logs in stdout when running npm scripts
我在 package.json 中有一个 运行 测试的 npm 脚本:
"scripts": {
"test": "tsc && node ./bin/test"
}
我运行这个用yarn test
。我从 yarn 得到编译错误的输出和这个日志:
error Command failed with exit code 2.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
error Command failed with exit code 2.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
有没有办法删除这个日志,因为它遮住了屏幕,我看不到编译器错误。
yarn -s test
此命令应使日志静音,因为 yarn 中的 -s
选项表示,
-s, --silent skip Yarn console logs, other types of logs (script output) will be printed
我在 package.json 中有一个 运行 测试的 npm 脚本:
"scripts": {
"test": "tsc && node ./bin/test"
}
我运行这个用yarn test
。我从 yarn 得到编译错误的输出和这个日志:
error Command failed with exit code 2.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
error Command failed with exit code 2.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
有没有办法删除这个日志,因为它遮住了屏幕,我看不到编译器错误。
yarn -s test
此命令应使日志静音,因为 yarn 中的 -s
选项表示,
-s, --silent skip Yarn console logs, other types of logs (script output) will be printed