Support for the FreeMonoTengwar font and ConScript encoding
[tengwarjs.git] / minify.sh
1
2 (
3 echo '(function () {'
4 closure --process_common_js_modules \
5 --common_js_entry_module tengwar.js \
6 --js \
7 tengwar.js \
8 modes.js \
9 general-use.js \
10 classical.js \
11 beleriand.js \
12 fonts.js \
13 tengwar-annatar.js \
14 tengwar-parmaite.js \
15 dan-smith.js \
16 column.js \
17 alphabet.js \
18 punctuation.js \
19 numbers.js \
20 notation.js \
21 normalize.js \
22 parser.js \
23 document-parser.js \
24 trie.js \
25 trie-parser.js \
26 detect-web-font.js
27
28 echo '})();'
29 ) | closure > tengwar.min.js
30
31 wc -c tengwar.min.js
32 cat tengwar.min.js | gzip | wc -c
33