mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-22 09:47:21 +01:00
10 lines
134 B
Bash
10 lines
134 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f2)
|
||
|
do
|
||
|
npm -g install "$package"
|
||
|
done
|