How can I use Ant to concatenate a list of CSS files, specified in 1 external CSS file with @imports?
The CSS file that specifies css files and file order looks like this:
@import url('header.css');
@import url('footer.css');
@import url('module/module1.css');
@import url('module/module2.css');
I want Ant to load and concat all files specified in the css into a single file. Is this possible?