Created
June 8, 2016 11:01
-
-
Save nasminspy/593c46b696f703c3d22852002de052e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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