DEV Community

TIL about automatically bumping NPM versions

Erin Bush on March 01, 2019

Do you need to update a bunch of packages? Do they all have a similar scope* or name? npm-check-updates checks the packages listed in your packag...
Collapse
 
vberlier profile image
Valentin Berlier • Edited

I've been using dependabot for keeping my dependencies up to date and it's the best thing ever. It works with virtually every language, it makes a PR when a dependency is out of date and the only thing you have to do is merge it. You can even tell it to merge the PR automatically if your CI checks have passed.

Collapse
 
bycedric profile image
Cedric van Putten

TIL too! I only knew about npm outdated. Here is the link to the repo:

Collapse
 
lfkwtz profile image
Michael Lefkowitz