Skip to content

Instantly share code, notes, and snippets.

@nasminspy
Created June 8, 2016 11:01
Show Gist options
  • Save nasminspy/593c46b696f703c3d22852002de052e3 to your computer and use it in GitHub Desktop.
Save nasminspy/593c46b696f703c3d22852002de052e3 to your computer and use it in GitHub Desktop.
<target name="js.minify" depends="js.preprocess">
<apply executable="java" parallel="false">
<fileset dir="." includes="*.css"/> <arg line="-jar"/>
<arg path="yuicompressor.jar"/>
<arg line="--line-break 0"/> <srcfile/>
<arg line="-o"/> <mapper type="glob" from="*.css" to="*-min.css"/>
<targetfile/>
</apply>
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment