superbiche
3/29/2015 - 11:46 PM

Upgrade all outdated npm packages.

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