File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ export class Project {
111
111
// Exclude files
112
112
this . config . exclude . map ( file => '!' + path . resolve ( configPath , file ) ) ,
113
113
// Exclude directories
114
- this . config . exclude . map ( file => '!' + path . resolve ( configPath , file ) + '/**/* ' )
114
+ this . config . exclude . map ( file => '!' + path . resolve ( configPath , file ) + '/**' )
115
115
) ;
116
116
}
117
117
if ( base !== undefined ) {
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ var Project = (function () {
52
52
// Exclude files
53
53
this . config . exclude . map ( function ( file ) { return '!' + path . resolve ( configPath , file ) ; } ) ,
54
54
// Exclude directories
55
- this . config . exclude . map ( function ( file ) { return '!' + path . resolve ( configPath , file ) + '/**/* ' ; } ) ) ;
55
+ this . config . exclude . map ( function ( file ) { return '!' + path . resolve ( configPath , file ) + '/**' ; } ) ) ;
56
56
}
57
57
if ( base !== undefined ) {
58
58
return vfs . src ( files_1 , { base : base } ) ;
You can’t perform that action at this time.
0 commit comments