grunt-image-embed
grunt-image-embed copied to clipboard
Not possible to proccess multiple css files
I have the following css folder structure
...
....
css
|- css1.min
|- css2.min
img
..
..
I need to process that files and save them into the same ones. In your example you works only with the single file:
src: [ "css/styles.css" ],
dest: "css/output.css",
Is it possible to process multiple files?
I think this possible, but this function is some kind of corrupted. When I set src to array
["styles1.css", "styles2.css", "styles3.css", "styles4.css"]
they all writes in dest file, but some comas also puts there so dest file is broken. I will be grateful if someone will help get around this problem.