Skip to content

Commit 66f0c91

Browse files
committed
fix: normalize globby paths in deadLinkChecker for Windows compatibility
1 parent 8bb31ac commit 66f0c91

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/deadLinkChecker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function getMarkdownFiles() {
4747
path.posix.join(baseDir, '**/*.md'),
4848
path.posix.join(baseDir, '**/*.mdx'),
4949
];
50-
return globby.sync(patterns);
50+
return globby.sync(patterns).map((p) => path.normalize(p));
5151
}
5252

5353
function extractAnchorsFromContent(content) {

0 commit comments

Comments
 (0)