当我跑步时,yarn check
我得到了这个警告:
warning "\u001b[2mchokidar#\u001b[22mfsevents#node-pre-gyp@^0.6.29" could be deduped from "0.6.32" to "node-pre-gyp@0.6.32"
请有人帮我理解这个吗?
我不知道这个词deduped
是什么意思.
为什么警告信息中有这么多垃圾字符?
我该怎么办才能解决这个警告?
非常感谢!
看来您的yarn.lock
文件包含node-pre-gyp
该版本的软件包的重复条目0.6.32
。
您可以执行以下步骤:
删除yarn.lock
文件。
重新安装软件包以生成新的yarn.lock yarn install
。
再次运行yarn check
命令。