Ignore test files/folders in bundling
This commit is contained in:
Vendored
+6
@@ -41,6 +41,12 @@ function grabPageDirRecursively({ page_dir, include_server, }) {
|
||||
if (is_page_excluded) {
|
||||
continue;
|
||||
}
|
||||
if (full_page_path.match(/__test__/)) {
|
||||
continue;
|
||||
}
|
||||
if (page_name.match(/\.test\.(t|j)sx?/)) {
|
||||
continue;
|
||||
}
|
||||
if (page_name.match(/\.server\.tsx?/) && !include_server) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user