O
O
OccamaRazor2016-12-14 09:38:19
JavaScript
OccamaRazor, 2016-12-14 09:38:19

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

1 answer(s)
A
Alexey Yarkov, 2016-12-14
@OccamaRazor

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 question

Ask a Question

731 491 924 answers to any question