Add dotfiles

This commit is contained in:
Sidharth Vinod 2022-09-03 13:35:23 +05:30
parent b84511b314
commit c49c15ab7c
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD
2 changed files with 2 additions and 2 deletions

0
docs/.nojekyll Normal file
View File

View File

@ -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);
});