Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
421 views
in Technique[技术] by (71.8m points)

reactjs - How can I get React styleguidist to install correctly and get past the peer Dependency issues with react-simple-code-editor: React 16 & 17?

I am in the process of learning React by reading the Fullstack React book.


My setup:

node -v
v14.15.3
npm -v
7.3.0

Following the styleguidist install guide I ran:

npm -i -D webpack react-styleguidist

This installed:

  • webpack v5.11.0
  • react-styleguidist 11.1.5

There appears to be some sort of conflict between:

This appears to be down to a peer-dependency in the react-simple-code-editor on React 16 baseline, whereas react-styleguidist uses React 17.

package.json for react-simple-code-editor:

....
"peerDependencies": {
  "react": "^16.0.0",
  "react-dom": "^16.0.0"
}

I raised the issue here but never heard back.

So I wondered if anyone here on SO with more in depth knowledge of React 16 to 17 enhancements can answer whether the react/react-dom in the react-simple-code-editor can be relaxed to use 16+? If so what is the syntax?

More info on Peer Dependencies here.

question from:https://stackoverflow.com/questions/65843175/how-can-i-get-react-styleguidist-to-install-correctly-and-get-past-the-peer-depe

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

React Styleguidist has a peer dependency of "react": ">=16.8". I'm assuming that prior to installing react-styleguidist, you ran npm install --save-dev react, and that would have installed [email protected].

You have two choices:

  1. Downgrade to [email protected]

    Look at the updates in the changelog or in the summary blog post. If you don't see any must-have changes and are more concerned about the conflicts, downgrade to resolve the peer dependency issue.

  2. Install the peer dependencies anyway

    npm 7.x has more strict error handling for peer dependency issues, and I was able to install these packages on npm 6.x in a React@17 app with no problem, but my colleague hit the same issue and was able to bypass it with npm install --force. Run that and it should work fine. I haven't had any issues yet and have been happily ignoring what is a mere warning on my npm version.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...