Node update a specific package
Most of the time you can just npm update (or pnpm update or yarn upgrade) a module to get the latest non breaking changes (respecting the semver specified in your package.json) (<– read that last part again). Use [p]npm|yarn outdated to see which modules have newer versions Use [p]npm update|yarn upgrade (without a package name) to update all modules Major version upgrades: In your case, it … Read more