Answer the question
In order to leave comments, you need to log in
Why does Gulp generate such a path when using the path module?
The standard task of copying files from one directory to another:
gulp.task('copy', function() {
gulp.src('src/css/**/*').
pipe(gulp.dest('dist/assets/css'));
});
// По умолчанию Gulp считает корневой директорией всё,
// что находится до шаблона **/* , поэтому результатом является путь
// dist/assets/css/**/*, что нам и надо
gulp.task('copy', function() {
// плагин path + пути, прописанные в файле конфигурации
var src = path.join(path1, path2), // src/css/**/*
dest = path.join(path3, path4); // dist/assets/css
gulp.src(src).
pipe(gulp.dest(dest));
});
// dist/assets/css/src/css/**/*
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question