I've got this gulp task:
var gulp = require('gulp');
gulp.task('myStaticFiles', function() {
gulp.src('staticSite/**')
.pipe(gulp.dest('build/site'));
});
Between src
and dest
I want to do a gulp-replace
(or similar). I currently have:
var gulp = require('gulp');
var replace = require('gulp-replace');
gulp.task('myStaticFiles', function() {
gulp.src('staticSite/**')
.pipe(replace(/mypattern/, "replacevalue"))
.pipe(gulp.dest('build/site'));
});
However, this affects all files in the pipe. I want to:
- have only certain files (either a specific file by name, or files with a certain extension) in the stream affected by
replace
; and - have all files reach
gulp.dest
.
How can I do so?
The gulp-replace
documentation has nothing on this, so perhaps I'm just lacking some knowledge on "the gulp way" to do this kind of thing?
Try this approach, using gulp-if: