mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-21 12:51:51 +00:00
Merge pull request #3168 from eddiemonge/issue_3159
Dont output errors to js file, increase cache size
This commit is contained in:
commit
50d1f9177a
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
|
@ -141,7 +141,12 @@ js: init
|
|||
@@cat ${JSFILES} >> ${OUTPUT}/${NAME}.js
|
||||
# ..... and then minify it
|
||||
@@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.js
|
||||
@@java -jar build/google-compiler-20111003.jar --js ${OUTPUT}/${NAME}.js --warning_level QUIET >> ${OUTPUT}/${NAME}.min.js
|
||||
@@java -XX:ReservedCodeCacheSize=64m \
|
||||
-jar build/google-compiler-20111003.jar \
|
||||
--js ${OUTPUT}/${NAME}.js \
|
||||
--js_output_file ${OUTPUT}/${NAME}.tmp.js
|
||||
@@cat ${OUTPUT}/${NAME}.tmp.js >> ${OUTPUT}/${NAME}.min.js
|
||||
@@rm ${OUTPUT}/${NAME}.tmp.js
|
||||
# -------------------------------------------------
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue