I have the following array in Gulp:
var imageFiles = {
'bootstrap-fileinput': 'bower/bootstrap-fileinput/dist/img/*',
'some-other-thing': 'bower/some-other-thing/dist/img/*'
};
I can be restructured if needed, as long as there is a prefix and path for that prefix.
How do I make gulp copy my images to the single folder I want, but prefix each one with prefix from the array? Means:
bower/bootstrap-fileinput/dist/img/arrow.jpg => /images/bootstrap-fileinput_arrow.jpg
bower/some-other-thing/dist/img/arrow.jpg => /images/some-other-thing_arrow.jpg
27.08.14: Do I understand correctly, that the task I described cannot be achieved using only one pipe? In the solution provided by @Doodlebot each file is piped independently and sequentially as I can see.
I was able to do this using the gulp-rename plug-in: