Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thmsobrmlr/d6dc8c09d45707655ceaf5856e4ed5f2 to your computer and use it in GitHub Desktop.
Save thmsobrmlr/d6dc8c09d45707655ceaf5856e4ed5f2 to your computer and use it in GitHub Desktop.
How to update global yarn and npm packages

NPM

List globally installed npm packages

npm list -g --depth=0

Update globally installed npm packages

npm i npm-check -g # install npm-check
npm-check -gu # list packages that need to be updated

Yarn

List globally installed yarn packages

yarn global list

Update globally installed yarn packages

yarn global upgrade-interactive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment