Skip to content

Instantly share code, notes, and snippets.

@pid
Forked from iki/README.md
Last active August 29, 2015 14:08
Show Gist options
  • Save pid/2e26d892d4ad0c4c6fe4 to your computer and use it in GitHub Desktop.
Save pid/2e26d892d4ad0c4c6fe4 to your computer and use it in GitHub Desktop.
@echo off
setlocal enableextensions enabledelayedexpansion
set packages=
for /f "usebackq delims=: tokens=3" %%f in (`npm -g outdated --parseable --depth=0 -q`) do set packages=!packages! %%f
:: Note: on windows, the first : separates drive in package path.
call npm install -g%packages%
exit /b %errorlevel%
#!/bin/sh
set -e
set -x
for package in $(npm -g outdated --parseable --depth=0 -q | 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