reactjs 在生产环境中使用传统对等部署是否安全

eqoofvh9  于 2022-11-29  发布在  React
关注(0)|答案(1)|浏览(154)

我正在使用react-collapsed,我所有的生产构建从早上开始就失败了。
在我的包json中,我使用的是"react-collapsed": "^3.3.0",
我看到他们一天前更新了一些东西。
这是我得到的...

+ npm install
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: react-collapsed@3.6.0
npm ERR! Found: react@18.2.0
npm ERR! node_modules/react
npm ERR!   react@"^18.2.0" from the root project
npm ERR!   peerOptional react@"^16.9.0 || ^17.0.0 || ^18" from @reduxjs/toolkit@1.9.0
npm ERR!   node_modules/@reduxjs/toolkit
npm ERR!     @reduxjs/toolkit@"^1.8.2" from the root project
npm ERR!   12 more (@testing-library/react, dexie-react-hooks, primereact, ...)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.8 || ^17" from react-collapsed@3.6.0
npm ERR! node_modules/react-collapsed
npm ERR!   react-collapsed@"^3.6.0" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: react@17.0.2
npm ERR! node_modules/react
npm ERR!   peer react@"^16.8 || ^17" from react-collapsed@3.6.0
npm ERR!   node_modules/react-collapsed
npm ERR!     react-collapsed@"^3.6.0" 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 /root/.npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2022-11-28T07_09_53_802Z-debug-0.log

现在我从stackoverflow得到的解是npm config set legacy-peer-deps true
链接:Could not resolve dependency error peer react@"^16.8.0 || ^17.0.0" from @material-ui/core@4.12.4
我有两个与此相关的问题
1.通过ci/cd管道在生产环境中使用npm config set legacy-peer-deps true是否安全。
1.我们有没有其他的替代品,因为我们可能会得到类似的东西与任何其他依赖关系。
编辑1:我已经更新了3.6.0

7gyucuyw

7gyucuyw1#

看起来你正在使用react 18和旧版本的react-collapsed@3.3.0。react collapsed第三版需要旧的react 16或17。
您需要将react-collapsed升级到最新版本。
1.生产不安全,建议使用最新版本
1.上面的是替代选项。

更新日期:

react-collapsed存在react 18支持问题,因此您可以尝试以下Patch作为替代方案:
https://www.npmjs.com/package/@gaearon/react-collapsed?activeTab=versions

相关问题