Answer the question
In order to leave comments, you need to log in
What construct to use in Gulp to get from each directory the file that is in the last folder?
At the same time, the nesting of folders is different, that is, somewhere like in bootstrap 2 folders and somewhere like in jquery 3
gulp.task('movefiles',function(){
});
Answer the question
In order to leave comments, you need to log in
gulp.task('movefiles',function(){
gulp.src(["./done/**/*.js", "./done/**/*.css"])
.pipe(gulp.dest("./build"));
});
P.S. Вы документацию смотрели вообще?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question