forked from Irrelon/ForerunnerDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-all.sh
20 lines (14 loc) · 835 Bytes
/
build-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
rm ./js/dist/fdb-all.js
rm ./js/dist/fdb-all.min.js
rm ./js/dist/fdb-autobind.js
rm ./js/dist/fdb-autobind.min.js
browserify ./js/builds/all.js -s ForerunnerDB | derequire > ./js/dist/fdb-all.js
browserify ./js/builds/autobind.js -s ForerunnerDB_AutoBind | derequire > ./js/dist/fdb-autobind.js
java -jar ./vendor/google/compiler.jar --compilation_level SIMPLE_OPTIMIZATIONS --warning_level=QUIET --js ./js/dist/fdb-all.js > ./js/dist/fdb-all.min.js
java -jar ./vendor/google/compiler.jar --compilation_level SIMPLE_OPTIMIZATIONS --warning_level=QUIET --js ./js/dist/fdb-autobind.js > ./js/dist/fdb-autobind.min.js
node postfix.js
rm ./js/unitTests/lib/fdb-all.js
cp ./js/dist/fdb-all.js ./js/unitTests/lib/fdb-all.js
rm ./js/unitTests/lib/fdb-autobind.js
cp ./js/dist/fdb-autobind.js ./js/unitTests/lib/fdb-autobind.js