Skip to content

Instantly share code, notes, and snippets.

@ediblecode
Created August 25, 2016 08:15
Show Gist options
  • Save ediblecode/0a815a07fe9dd719b57db83efe25d09a to your computer and use it in GitHub Desktop.
Save ediblecode/0a815a07fe9dd719b57db83efe25d09a to your computer and use it in GitHub Desktop.
Update all outdated NPM packages
# https://github.com/npm/npm/issues/3417#issuecomment-76363431
npm outdated --depth=0 | grep -v Package | awk '{print $1}' | xargs -I% npm install %@latest --save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment