We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ecef70 commit 822c2adCopy full SHA for 822c2ad
test/build-test.ts
@@ -75,7 +75,7 @@ function* findFiles(root: string): Iterable<string> {
75
if (visited.has(status.ino)) throw new Error(`Circular directory: ${path}`);
76
visited.add(status.ino);
77
for (const entry of readdirSync(path)) {
78
- if (entry === ".DS_store") continue; // macOS
+ if (entry === ".DS_Store") continue; // macOS
79
queue.push(join(path, entry));
80
}
81
} else {
0 commit comments