forked from dropbox/zxcvbn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compile_and_minify.sh
executable file
·23 lines (20 loc) · 1.03 KB
/
compile_and_minify.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
set -e
# the coffee compiler adds a function wrapper by default.
# i add one myself manually because zxcvbn.js is built from a mix of .cs and .js files.
function_wrap () {
echo '(function () {' "$(cat /dev/stdin)" '})();'
}
echo 'compiling cs -> js'
coffee --compile --bare {matching,scoring,init}.coffee
coffee --compile async.coffee
echo 'compiling js -> js'
# closure's simple optimizations ended up being about 200k better than whitespace-only.
# mostly from removing spaces and double quotes from the frequency lists, heh.
# advanced is only about 1k better than simple and adds complixity. skip it.
COMPILATION_LEVEL=SIMPLE_OPTIMIZATIONS
cat {matching,scoring,adjacency_graphs,frequency_lists,init}.js | function_wrap > compiled.js
java -jar tools/closure.jar --compilation_level $COMPILATION_LEVEL --js compiled.js --js_output_file zxcvbn.js
java -jar tools/closure.jar --compilation_level $COMPILATION_LEVEL --js async.js --js_output_file zxcvbn-async.js
rm -f compiled.js
echo 'done. produced zxcvbn.js and zxcvbn-async.js'