Ignore dotfiles in plugin dirs (#447)

This commit is contained in:
hunter 2023-01-22 16:27:55 -07:00 committed by GitHub
parent 68e80c4d4c
commit 84cfe531af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ export const globPlugins = {
if (!existsSync(`./src/${dir}`)) continue;
const files = await readdir(`./src/${dir}`);
for (const file of files) {
if (file.startsWith(".")) continue;
if (file === "index.ts") {
continue;
}