bootbox
Version:
Wrappers for JavaScript alert(), confirm() and other flexible dialogs using Twitter's bootstrap framework
9 lines (8 loc) • 529 B
text/xml
<project name="Bootbox" default="minify">
<target name="minify">
<exec checkreturn="true" passthru="true" command='curl -s -d compilation_level=SIMPLE_OPTIMIZATIONS -d output_format=text -d output_info=compiled_code --data-urlencode "js_code@bootbox.js" http://closure-compiler.appspot.com/compile > bootbox.tmp.js' />
<exec checkreturn="true" passthru="true" command='cat header.txt bootbox.tmp.js > bootbox.min.js' />
<delete file="bootbox.tmp.js" />
</target>
</project>