- Equipo, invitaciones de agentes git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@39 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
11 lines
288 B
Bash
11 lines
288 B
Bash
#!/bin/bash
|
|
|
|
echo "Sending JS to appspot.com"
|
|
curl \
|
|
-s \
|
|
--data-urlencode js_code@jquery.uniform.js \
|
|
--data output_info=compiled_code \
|
|
--data output_format=text \
|
|
--data compilation_level=SIMPLE_OPTIMIZATIONS \
|
|
http://closure-compiler.appspot.com/compile > jquery.uniform.min.js
|