Remove bower from shell scripts

This commit is contained in:
Gaël Métais
2015-08-16 13:30:57 +02:00
parent e0649eb9bd
commit 2f1003e8bc
2 changed files with 2 additions and 5 deletions
+1 -2
View File
@@ -12,7 +12,7 @@ sudo apt-get install -y nodejs
source ~/.profile
# Installation of some packages globally
npm install bower forever grunt-cli -g
npm install forever grunt-cli -g
source ~/.profile
# Installation of YellowLabTools
@@ -22,7 +22,6 @@ cd /space
git clone https://github.com/gmetais/YellowLabTools.git --branch master
cd YellowLabTools
npm install || exit 1
bower install --config.interactive=false --allow-root || exit 1
# Front-end compilation
grunt build
+1 -3
View File
@@ -10,11 +10,9 @@ git stash
git pull
git stash pop
# In case something was added in package.json or bower.json
# In case something was added in package.json
rm -rf node_modules
npm install || exit 1
rm -rf bower_components
bower install --config.interactive=false --allow-root || exit 1
# Front-end compilation
rm -rf front/build