mirror of
https://github.com/gre/gl-react.git
synced 2025-12-08 21:35:55 +00:00
13 lines
188 B
Bash
Executable File
13 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd $(dirname $0)/..
|
|
|
|
for d in ./packages/gl-react*; do
|
|
cd $d
|
|
rm -rf lib
|
|
babel --root-mode upward --watch --source-maps -d lib src &
|
|
cd - 1> /dev/null
|
|
done
|
|
|
|
wait |