本文介绍了npm WARN 已弃用 [email protected]:您可以在 @popperjs/core 找到新的 Popper v2,该软件包专用于旧版 v1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我为现有的 React 项目放置命令 npm update
时,会显示:
When I place the command npm update
for an existing React project, this is displayed:
npm WARN deprecated [email protected]: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modulesfsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
推荐答案
运行命令 npm uninstall popper.js &&npm i @popperjs/core
删除不推荐使用的包并安装新的 Popper v2
Run the command npm uninstall popper.js && npm i @popperjs/core
to remove the deprecated package and install their new Popper v2
这篇关于npm WARN 已弃用 [email protected]:您可以在 @popperjs/core 找到新的 Popper v2,该软件包专用于旧版 v1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!