Skip to content

Commit c6dc6aa

Browse files
committed
fix: ignore node_modules because ui-bundle/webapp/react stuff
1 parent 15277aa commit c6dc6aa

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/shared/local/localShadowRepo.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,8 @@ const fileFilter =
356356
(f: string): boolean =>
357357
// no hidden files
358358
!f.includes(`${path.sep}.`) &&
359+
// no node_modules (e.g. uiBundle packages inside force-app)
360+
!f.split(path.sep).includes('node_modules') &&
359361
// no lwc tests
360362
excludeLwcLocalOnlyTest(f) &&
361363
// no gitignore files

0 commit comments

Comments
 (0)