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:
M.Abdulrahman Alnaseer 2025-08-15 10:26:44 -04:00
parent 192f531d20
commit 07c539dcc7
1 changed files with 0 additions and 1 deletions

View File

@ -15,7 +15,6 @@ const DEFAULT_PATTERNS = [
"**/node_modules/**", "**/node_modules/**",
"**/bower_components/**", "**/bower_components/**",
"**/vendor/**", "**/vendor/**",
"**/packages/**",
"**/build/**", "**/build/**",
"**/dist/**", "**/dist/**",
"**/out/**", "**/out/**",