Skip to content

Commit

Permalink
fix(@schematics/angular): ignore hidden directories when running brow…
Browse files Browse the repository at this point in the history
…serlist migration

Closes #24991
  • Loading branch information
alan-agius4 authored and angular-robot[bot] committed Apr 12, 2023
1 parent 162484b commit f0b257e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -28,7 +28,7 @@ function* visit(directory: DirEntry): IterableIterator<Path> {
}

for (const path of directory.subdirs) {
if (path === 'node_modules') {
if (path === 'node_modules' || path.charAt(0) === '.') {
continue;
}

Expand Down

0 comments on commit f0b257e

Please sign in to comment.