mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-15 06:19:24 +02:00
Add dotfiles
This commit is contained in:
0
docs/.nojekyll
Normal file
0
docs/.nojekyll
Normal 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);
|
||||
});
|
||||
|
Reference in New Issue
Block a user