-
there are lots of outdated project dependencies e.g react-navigation@2.x.x, react-native-firebase, react-native etc. Now I want to upgrade all of them. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @efsaley npm outdated - shows all the packages that have newer versions available, this includes breaking changes. It prints a table that includes the package, the current version, the wanted version - according to the semver rules in the package.json - the latest version and the location of the package. For upgrading react-native itself You can use React Native Upgrade Helper to see what has changed. |
Beta Was this translation helpful? Give feedback.
Hi @efsaley npm outdated - shows all the packages that have newer versions available, this includes breaking changes. It prints a table that includes the package, the current version, the wanted version - according to the semver rules in the package.json - the latest version and the location of the package.
For upgrading react-native itself You can use React Native Upgrade Helper to see what has changed.