mirror of
https://github.com/gre/gl-react.git
synced 2026-01-18 16:16:59 +00:00
24 lines
287 B
Bash
Executable File
24 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
cd `dirname $0`/..
|
|
|
|
function install() {
|
|
echo "INSTALL in "`pwd`
|
|
npm i
|
|
}
|
|
|
|
packages=`ls packages`
|
|
projs="cookbook cookbook-rn tests"
|
|
|
|
install
|
|
for pkg in $packages; do
|
|
cd packages/$pkg
|
|
install
|
|
cd -
|
|
done
|
|
for proj in $projs; do
|
|
cd $proj;
|
|
install
|
|
cd -
|
|
done
|