Skip to content

Instantly share code, notes, and snippets.

@superbiche
Created March 29, 2015 23:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save superbiche/dac207d18cd08ca7d79a to your computer and use it in GitHub Desktop.
Save superbiche/dac207d18cd08ca7d79a to your computer and use it in GitHub Desktop.
Upgrade all outdated npm packages.
#!/bin/sh
set -e
set -x
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f2)
do
npm -g install "$package"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment