We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15277aa commit c6dc6aaCopy full SHA for c6dc6aa
1 file changed
src/shared/local/localShadowRepo.ts
@@ -356,6 +356,8 @@ const fileFilter =
356
(f: string): boolean =>
357
// no hidden files
358
!f.includes(`${path.sep}.`) &&
359
+ // no node_modules (e.g. uiBundle packages inside force-app)
360
+ !f.split(path.sep).includes('node_modules') &&
361
// no lwc tests
362
excludeLwcLocalOnlyTest(f) &&
363
// no gitignore files
0 commit comments