-
Notifications
You must be signed in to change notification settings - Fork 166
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
Increment react and react-dom versions #543
base: master
Are you sure you want to change the base?
Conversation
Pull Request Test Coverage Report for Build 2320
💛 - Coveralls |
@turisap decrementing version does not seem to be enough. I am now running on
With stack trace pointing out
Did you do anything else to actually skip this issue? |
@turisap @ricricucit any update on this? I just stumbled over this as well.. |
@ohlr Sorry for not following up here, but I made that working using an older React versions like @turisap was suggesting, but using FYI, in "dependencies": {
...
"npm-force-resolutions": "0.0.10"
...
} "resolutions": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
} not an ideal solution, but made it work. |
In my opinion React and React-DOM should be installed as dev-dependencies, so it would be compatible with all versions. We should point to the required React and React-DOM versions in peer-dependencies. If you agree I can send the pull request. |
* incremented versions in the root package.json * incremented versions in modules/editor
7b0d284
to
8e47570
Compare
@ohlr sorry for not being up to date with this. I've just signed up the agreement and fixed email issues in my commits. |
Any idea how to get this to work? I have the same problem with the editor sample. |
This error is still showing, any ideas? |
This is a fix for the following error
The error appears when an application using this package (we use the Toolbox component from the
@nebula/editor
) has version 17 and higher ofreact
andreact-dom
installed. The only way I've found for now is to decrement versions ofreact
andreact-dom
which is not really desirable.