fix(flattener): refine packages ignore pattern to avoid excluding source code directories
The previous pattern '**/packages/**' was too broad and excluded legitimate source code directories named 'packages' in monorepo structures. Remove it to preserving source code organization patterns. Fixes issue with flattening projects that use 'packages' directory for source code organization.
This commit is contained in:
parent
192f531d20
commit
07c539dcc7
|
|
@ -15,7 +15,6 @@ const DEFAULT_PATTERNS = [
|
|||
"**/node_modules/**",
|
||||
"**/bower_components/**",
|
||||
"**/vendor/**",
|
||||
"**/packages/**",
|
||||
"**/build/**",
|
||||
"**/dist/**",
|
||||
"**/out/**",
|
||||
|
|
|
|||
Loading…
Reference in New Issue