Upgrade dependencies with "yarn upgrade-interactive"
May 12, 2021
This command will display the outdated packages before performing any upgrade, allowing the user to select which packages to upgrade. Yarn will respect the version ranges in package.json when determining the version to upgrade to.
--latest : This flag tells yarn to ignore the specified version ranges in package.json and instead, use the version tagged latest in the registry.
Reference
https://classic.yarnpkg.com/en/docs/cli/upgrade-interactive/