且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Glob/*与以点开头的文件不匹配

更新时间:2023-02-22 08:51:31

如果添加选项dot: true,它应该可以工作.例如:

If you add the option dot: true, it should work. Eg:

gulp.task('something', function () {
    return gulp.src([ 'app/**/*' ], {
        dot: true
    }).pipe(gulp.dest('dist'));
});

参考