📌  相关文章
📜  在 gulp 中复制文件夹及其内容 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:17.861000             🧑  作者: Mango

代码示例1
// will copy the assets folder and its sub directories + files to the destination
return gulp.src('assets*/**/*')

// will only copy the sub directories + files of the assets folder to the destination
return gulp.src('assets/**/*')