mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
16 lines
No EOL
198 B
Bash
Executable file
16 lines
No EOL
198 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ex -o pipefail
|
|
|
|
cd `dirname $0`
|
|
cd ..
|
|
source scripts/env.sh
|
|
|
|
# Setup TypeScripts
|
|
for TYPESCRIPT in ${TYPESCRIPTS[@]}
|
|
do
|
|
(
|
|
cd typescripts/$TYPESCRIPT
|
|
yarn
|
|
)
|
|
done |