diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/src/docs.mts b/src/docs.mts index b5370144b..6db4b83f1 100644 --- a/src/docs.mts +++ b/src/docs.mts @@ -62,9 +62,9 @@ const transform = (file: string) => { }; (async () => { - const mdFiles = await globby(['./src/docs/**/*.md']); + const mdFiles = await globby(['./src/docs/**/*.md'], { dot: true }); mdFiles.forEach(transform); - const nonMDFiles = await globby(['src/docs/**', '!**/*.md']); + const nonMDFiles = await globby(['src/docs/**', '!**/*.md'], { dot: true }); nonMDFiles.forEach((file) => { verifyAndCopy(file); });