Hi, I have a lot of small css files and one index file which imports all other using the following format: @import url("default.css"); @import url("default_behaviour.css"); @import url("default_form.css"); ...
I would like to go through this file and replace lines @import url("*.css"); with actual content of css file the line imports. So that at the end I have all css included in one file. How could I accomplish my task using Ant? Is there are any task I can use for this case, or do I have to write a new one? Thank you in advance! /Vlad