Answer the question
In order to leave comments, you need to log in
How can I configure gulp to copy only the changed file from the watch list?
Good afternoon.
I am using something like this in my project to copy a filename from one directory to another:
const mover = ({ destPath, globs }) => () => {
return src(globs)
.pipe(flatten())
.pipe(dest(destPath));
};
Answer the question
In order to leave comments, you need to log in
Two plugins will help you in different situations:
gulp-changed
gulp-changed-in-place
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question