Moved from the old JSMin to using YUIMin for compressing the jQuery source. Additionally landed some improvements from #3770 which dramatically reduce the filesize. The final minifed + gzipped size of jQuery went from 19817 bytes to 18063 bytes.

This commit is contained in:
John Resig 2009-01-04 15:29:27 +00:00
parent c0294278db
commit 434b87b8a2
5 changed files with 7 additions and 3 deletions

View file

@ -50,6 +50,7 @@ JQ_VER = `cat version.txt`
VER = sed s/@VERSION/${JQ_VER}/
JAR = java -jar ${BUILD_DIR}/js.jar
MINJAR = java -jar ${BUILD_DIR}/yuicompressor-2.4.2.jar
all: jquery lite min pack speed
@@echo "jQuery build complete."
@ -104,7 +105,7 @@ ${JQ_MIN}: ${JQ}
@@echo "Building" ${JQ_MIN}
@@echo " - Compressing using Minifier"
@@${JAR} ${BUILD_DIR}/build/min.js ${JQ} ${JQ_MIN}
@@${MINJAR} ${JQ} > ${JQ_MIN}
@@echo ${JQ_MIN} "Built"
@@echo