Here’s a little one-liner I came up with that I had a hard time googling for:
$ npm outdated | tail -n +2 | awk '{print $1}' | xargs -I % sh -c 'npm i %@latest --save-exact'
It will simply update each outdated dependency to their latest version, I recommend using --save-exact
but that’s optional.
Nothing too fancy but hopefully it saves me a headache later when I have to search for it again!
You must log in to post a comment.