react-theme-provider
react-theme-provider copied to clipboard
Support for peerDependency of react@^17.0.0
Describe the feature
Expand peerDependency to also include react above v17
Motivation
Dependency tree error in latest versions of node/npm
Encountering this as well, any update?
I found this problem too, a possible fix to improve support also to React 18 must be:
https://github.com/callstack/react-theme-provider/blob/master/package.json#L54
Change to:
{
"peerDependencies": {
"react": "^16.3.0 || ^17.0.2 || ^18.0.0",
}
}
also this with combination of issue https://github.com/callstack/react-theme-provider/issues/144