mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
19 lines
346 B
Bash
Executable File
19 lines
346 B
Bash
Executable File
#!/bin/sh
|
|
|
|
NG_FOLDER=dist/angular-master
|
|
|
|
cd $(dirname $0)/../../
|
|
|
|
$(test -e $NG_FOLDER) || (git clone git@github.com:angular/angular $NG_FOLDER)
|
|
|
|
cd $NG_FOLDER
|
|
echo "Running npm install in angular2..."
|
|
npm install
|
|
|
|
echo "Running gulp to build source..."
|
|
gulp build/transpile.js.dev.es6
|
|
|
|
echo "--"
|
|
echo "-- DONE, gulp will work now --"
|
|
echo "--"
|