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.
8 lines
164 B
Bash
8 lines
164 B
Bash
#!/bin/bash
|
|
# strict mode http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
export SRC_DIR="./src"
|
|
export OUT_DIR="./build"
|