CoreUI:尝试 npm install 下载的免费版 CoreUI 来试用仪表板
CoreUI: Try to npm install the downloaded free version of CoreUI to try the dashboard
我在下载免费的 CoreUI for react 并调用 npm install 后收到以下错误。我的印象是来不正确的依赖是问题所在,但我不太明白错误在说什么。
> Could not resolve dependency:
npm WARN peer react@"0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0" from enzyme-adapter-utils@1.14.0
npm WARN node_modules/enzyme-adapter-utils
npm WARN enzyme-adapter-utils@"^1.13.1" from @wojtekmaj/enzyme-adapter-react-17@0.3.2
npm WARN node_modules/@wojtekmaj/enzyme-adapter-react-17
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! Found: react@17.0.1
npm ERR! node_modules/react
npm ERR! react@"^17.0.1" from the root project
npm ERR! peer react@"^17.0.1" from @coreui/icons-react@1.1.0
npm ERR! node_modules/@coreui/icons-react
npm ERR! @coreui/icons-react@"^1.0.2" from the root project
npm ERR! @coreui/icons-react@"^1.1.0" from @coreui/react@3.4.6
npm ERR! node_modules/@coreui/react
npm ERR! @coreui/react@"^3.4.0" from the root project
npm ERR! 8 more (@coreui/react, react-dom, react-router-dom, ...)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^0.14 || ^15.0.0 || ^16.0.0-alpha" from airbnb-prop-types@2.16.0
npm ERR! node_modules/enzyme-adapter-utils/node_modules/airbnb-prop-types
npm ERR! airbnb-prop-types@"^2.16.0" from enzyme-adapter-utils@1.14.0
npm ERR! node_modules/enzyme-adapter-utils
npm ERR! enzyme-adapter-utils@"^1.13.1" from @wojtekmaj/enzyme-adapter-react-17@0.3.2
npm ERR! node_modules/@wojtekmaj/enzyme-adapter-react-17
npm ERR! @wojtekmaj/enzyme-adapter-react-17@"^0.3.2" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See AppData\Local\npm-cache\eresolve-report.txt for a full report.
这是因为@wojtekmaj/enzyme-adapter-react-17 适用于 React 17,但使用酶适配器实用程序,它虽然也适用于 React 17,但没有声明 React 17 兼容性。
好消息是@wojtekmaj/enzyme-adapter-react-17 0.6.0 修复了这个问题,因此您只需安装最新版本,错误就会消失。
如果您由于某种原因无法自行更新适配器,您可以尝试使用 --legacy-peer-deps
标志安装您的项目。
我在下载免费的 CoreUI for react 并调用 npm install 后收到以下错误。我的印象是来不正确的依赖是问题所在,但我不太明白错误在说什么。
> Could not resolve dependency:
npm WARN peer react@"0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0" from enzyme-adapter-utils@1.14.0
npm WARN node_modules/enzyme-adapter-utils
npm WARN enzyme-adapter-utils@"^1.13.1" from @wojtekmaj/enzyme-adapter-react-17@0.3.2
npm WARN node_modules/@wojtekmaj/enzyme-adapter-react-17
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! Found: react@17.0.1
npm ERR! node_modules/react
npm ERR! react@"^17.0.1" from the root project
npm ERR! peer react@"^17.0.1" from @coreui/icons-react@1.1.0
npm ERR! node_modules/@coreui/icons-react
npm ERR! @coreui/icons-react@"^1.0.2" from the root project
npm ERR! @coreui/icons-react@"^1.1.0" from @coreui/react@3.4.6
npm ERR! node_modules/@coreui/react
npm ERR! @coreui/react@"^3.4.0" from the root project
npm ERR! 8 more (@coreui/react, react-dom, react-router-dom, ...)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^0.14 || ^15.0.0 || ^16.0.0-alpha" from airbnb-prop-types@2.16.0
npm ERR! node_modules/enzyme-adapter-utils/node_modules/airbnb-prop-types
npm ERR! airbnb-prop-types@"^2.16.0" from enzyme-adapter-utils@1.14.0
npm ERR! node_modules/enzyme-adapter-utils
npm ERR! enzyme-adapter-utils@"^1.13.1" from @wojtekmaj/enzyme-adapter-react-17@0.3.2
npm ERR! node_modules/@wojtekmaj/enzyme-adapter-react-17
npm ERR! @wojtekmaj/enzyme-adapter-react-17@"^0.3.2" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See AppData\Local\npm-cache\eresolve-report.txt for a full report.
这是因为@wojtekmaj/enzyme-adapter-react-17 适用于 React 17,但使用酶适配器实用程序,它虽然也适用于 React 17,但没有声明 React 17 兼容性。
好消息是@wojtekmaj/enzyme-adapter-react-17 0.6.0 修复了这个问题,因此您只需安装最新版本,错误就会消失。
如果您由于某种原因无法自行更新适配器,您可以尝试使用 --legacy-peer-deps
标志安装您的项目。