This file contains hidden or 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
<?xml version="1.0"?> | |
<project name="YUI Compressor" default="minify" basedir="."> | |
<property name="yuicompressor.lib" value=".ant/yuicompressor-2.4.6.jar" /> | |
<target name="minify" description="Uses the YUI Compressor engine to combine and minify CSS and JS"> | |
<!-- Remove the existing combined CSS or JS file that exist --> | |
<delete><fileset dir="css" includes="combined.*" /></delete> | |
<delete><fileset dir="js" includes="combined.*" /></delete> | |
<antcall target="minifycss" /> |