Note: My application compiles and runs smoothly with "react-native-web": "^0.11.*" in my ../common/package.json dependencies.
--
CHANGES
updating ../common/package.json -> "react-native-web": "^0.11.*" to "react-native-web": "^0.17.*"
After restarting process (clean, install, build) the application now shows this error on start:
ERRORS
TypeError: Cannot read property 'style' of undefined
../common/node_modules/react-native-router-flux/src/Router.js
244 | ...
245 | sceneStyle: _reactNative.ViewPropTypes.style,
246 | ...
...implicating ViewPropTypes is now undefined due to the react-native-web update.
--
Question: What is the approach to fixing these issues when a react-native-web (or other dependencies) dependency update causes an error in another dependency?