e7bc048a46
Upgrades to babel 6. The major win (aside from some minor performance gains), is that this module can now be `npm link`ed into a babel 6 code base.
16 lines
244 B
Bash
Executable File
16 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
# strict mode http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
|
|
source "scripts/env.sh"
|
|
|
|
babel="./node_modules/.bin/babel"
|
|
|
|
build () {
|
|
$babel "$SRC_DIR" --out-dir "$OUT_DIR" $@
|
|
}
|
|
|
|
build $@
|