Skip to content

Commit c7a9af3

Browse files
committed
fix: ignore .DS_Store files in all subdirectories
1 parent 8adccb7 commit c7a9af3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/source.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function getExcludedSourcePaths(source: CollectionSource) {
1010
return [
1111
...(source!.exclude || []),
1212
// Ignore OS files
13-
'.DS_Store',
13+
'**/.DS_Store',
1414
]
1515
}
1616

0 commit comments

Comments
 (0)