2014-06-26 22:48:03 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
curl \
|
|
|
|
|
--silent \
|
|
|
|
|
--data compilation_level=ADVANCED_OPTIMIZATIONS \
|
|
|
|
|
--data output_format=json \
|
|
|
|
|
--data output_info=errors \
|
|
|
|
|
--data output_info=warnings \
|
|
|
|
|
--data language=ECMASCRIPT5 \
|
|
|
|
|
--data warning_level=verbose \
|
|
|
|
|
--data-urlencode "js_code@recentrunes.js" \
|
|
|
|
|
http://closure-compiler.appspot.com/compile
|
|
|
|
|
echo
|
|
|
|
|
|
|
|
|
|
gjslint --strict recentrunes.js
|
2014-06-27 23:54:22 -07:00
|
|
|
gjslint --strict --nojsdoc test.js
|