justin-chu / react-fast-marquee

A lightweight React component that harnesses the power of CSS animations to create silky smooth marquees.
https://react-fast-marquee.com
MIT License
1.16k stars 95 forks source link

peerDependencies are defined incorrectly #96

Open wojtekmaj opened 7 months ago

wojtekmaj commented 7 months ago

peerDependencies are set to:

react: ">= 16.8.0 || 18.0.0"
react-dom: ">= 16.8.0 || 18.0.0"

>= 16.8.0 matches 16.8.0, 16.9.0, …, 16.50.0, 17.0.0, …, 18.0.0 (!), …, 19.0.0 and so on. This makes >= 16.8.0 || 18.0.0 expression pointless.

I believe your intention was to set the range of supported React versions to ^16.8.0 || ^17.0.0 || ^18.0.0, translating to human speech: Anything above and including 16.8.0, but not 19.0.0 or higher (yet).