Skip to content

Commit

Permalink
Changed build.xml to use YUICompressor, fixes jquery#3779.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Jan 4, 2009
1 parent 434b87b commit 12166e9
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions build.xml
Expand Up @@ -18,6 +18,7 @@
<property description="Source Folder" name="SRC_DIR" value="src" />
<property description="Files for parsing etc." name="BUILD_DIR" value="build" />
<property description="Rhino JS Engine" name="JAR" value="${BUILD_DIR}/js.jar" />
<property description="YUICompressor" name="YUICompressor" value="${BUILD_DIR}/yuicompressor-2.4.2.jar" />

<property description="Folder for jquery, min, lite and packed target" name="DIST_DIR" value="./dist" />

Expand Down Expand Up @@ -54,11 +55,18 @@

<target name="min" depends="jquery" description="Remove all comments and whitespace, no compression, great in combination with GZip">
<echo message="Building ${JQ_MIN}" />
<java jar="${JAR}" fork="true">
<arg value="${BUILD_DIR}/build/min.js" />
<arg value="${JQ}" />
<arg value="${JQ_MIN}" />
</java>
<apply executable="java" parallel="false" verbose="true" dest="${DIST_DIR}">
<fileset dir="${DIST_DIR}">
<include name="jquery.js" />
</fileset>
<arg line="-jar" />
<arg path="${YUICompressor}" />
<arg value="--charset" />
<arg value="ANSI" />
<arg value="-o" />
<targetfile />
<mapper type="glob" from="jquery.js" to="jquery.min.js" />
</apply>
<echo message="${JQ_MIN} built." />
</target>

Expand Down

0 comments on commit 12166e9

Please sign in to comment.