Skip to content

Commit 3ea1cdf

Browse files
committed
chore: avoid .DS_Store files in docs
1 parent bf0acfe commit 3ea1cdf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/bin/generateDocs.js

+3
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,9 @@ const getDocPaths = () => {
202202
// Will get path separately below
203203
return null;
204204
}
205+
if (docFile === '.DS_Store') {
206+
return null;
207+
}
205208

206209
const innerBasePath = path.join(basePath, docFile);
207210
const writeInnerBasePath = path.join(writeBasePath, docFile);

0 commit comments

Comments
 (0)