transition updates

This commit is contained in:
Adam Bradley
2015-05-05 08:53:59 -05:00
parent 478b7b83c6
commit 0e754ada16
12 changed files with 353 additions and 182 deletions

View File

@ -1,22 +0,0 @@
#!/bin/sh
NG_FOLDER=node_modules/angular-master
cd $(dirname $0)/../../
$(test -e $NG_FOLDER) || (git clone git@github.com:angular/angular $NG_FOLDER)
cd $NG_FOLDER
echo "Pulling from master.."
git pull origin master
echo "Running npm install in angular2..."
npm install
echo "Running gulp to build source..."
gulp clean
gulp build.js
echo "--"
echo "-- DONE, gulp will work now --"
echo "--"