]> git.sesse.net Git - remoteglot/blob - build.sh
61b1376edb93b54a0d3e2b02c9c6ee2ffa3892a8
[remoteglot] / build.sh
1 #! /bin/sh
2
3 # Download http://dl.google.com/closure-compiler/compiler-latest.zip
4 # and unzip it in closure/ before running this script.
5
6 java -jar closure/compiler.jar \
7         --language_in ECMASCRIPT5 \
8         --compilation_level SIMPLE \
9         --js_output_file=www/js/remoteglot.min.js \
10         --externs externs/jquery-1.9.js \
11         --externs externs/webstorage.js \
12         www/js/chessboard-0.3.0.js \
13         www/js/chess.js \
14         www/js/json_delta.js \
15         www/js/remoteglot.js
16