How to copy images having them renamed with a prefix?

727 Views Asked by At

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.

1

There are 1 best solutions below

3
On

I was able to do this using the gulp-rename plug-in:

var gulp = require('gulp');
var rename = require('gulp-rename');

gulp.task('default', function() {
    var imageFiles = {
        'bootstrap-fileinput': 'bower/bootstrap-fileinput/dist/img/*',
        'some-other-thing': 'bower/some-other-thing/dist/img/*'
    }

    Object.keys(imageFiles).forEach(function(key) {
        gulp.src(imageFiles[key])
        .pipe(rename({
            prefix: key
        }))
        .pipe(gulp.dest('images/'));
    });
});