switch to gulp for build process

This commit is contained in:
Sebastian McKenzie
2015-11-04 00:00:18 +00:00
parent bcfe582fef
commit 232439460f
6 changed files with 33 additions and 13 deletions

View File

@@ -1,10 +0,0 @@
#!/bin/sh
set -e
for f in packages/*; do
if [ -d "$f/src" ]; then
node node_modules/babel/bin/babel "$f/src" --out-dir "$f/lib" --copy-files $1 &
fi
done
wait