From c49c15ab7c21fdd92edac9627df87623ef89dc69 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Sat, 3 Sep 2022 13:35:23 +0530 Subject: [PATCH] Add dotfiles --- docs/.nojekyll | 0 src/docs.mts | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 docs/.nojekyll 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); });