summaryrefslogtreecommitdiff
path: root/bin/updatePlugins.sh
blob: d696eca7948bcb1955a192430fa8faa41bec891d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

#Move to the folder where ep-lite is installed
cd `dirname $0`

#Was this script started in the bin folder? if yes move out
if [ -d "../bin" ]; then
  cd "../"
fi

npm outdated --depth=0 | grep -v "^Package" | awk '{print $1}' | xargs npm install $1 --save-dev