-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Outdated dependency #103
Comments
Yes facing the same issue, is there any tweak to use it with v18.2 of react ? |
Hi @Codename-404 @Dave-Rushabh , I'll try to upgrade version to compatible with latest react version. |
We are also using this library, thanks for your great work! We are also being prevented from upgrading to React 18.2 because of it, so we would greatly appreciate an official update. |
as suggested by @notnotzero in the following thread (#94 (comment)), we fixed our problem by overriding react-pannellum's dependencies in our own package.json. We didn't have any conflict with postcss so we just overrided react and react-dom. "overrides": {
"react-pannellum": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"dependencies": {
(.....)
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pannellum": "^0.2.6",
(.....) |
Do you have plan to update the dependencies of this project? Such as it conflicts with the latest version of react, postcss etc.
The text was updated successfully, but these errors were encountered: