I try to sort through files, substitute text in some and save only changed. In my current code gulp-changed
does nothing.
const gulp = require('gulp');
const changed = require('gulp-changed');
const replace = require('gulp-replace');
gulp.task('text-replace', function(){
var before = 'xxx';
var after = 'yyy';
gulp.src('src/**/*')
.pipe(replace(before, after))
.pipe(changed('src'))
.pipe(gulp.dest('dest'));
});
UPDATE: I almost solved this myself, but there is a small issue related to gulp-cached
in my answer down below.
According to gulp-newer vs gulp-changed gulp-changed and gulp-newer don't compare stream files with files in directories, they compare 'src' directory files with 'dest' directory files, and according to that decide what to do with stream files. There is another solution:
Still, there is a problem - I have
src
directory structure completely recreated indest
, no matter if it's with files or empty.