标签: logging compiler-errors npm warnings compiler-warnings
npm会抛出errors和warnings。
errors
warnings
如何禁用其中一个或两个?
答案 0 :(得分:0)
要禁用这些日志类型,您需要在npm install命令中附加参数。
npm install
WARNs
--loglevel=error。
--loglevel=error
npm install --loglevel=error
ERRs和--silent。
ERRs
--silent
npm install --silent