Skip to content

Commit d511490

Browse files
committed
fix: updated ignored files on "all code" script
1 parent 128490e commit d511490

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

allcode.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33

44
# Directories to exclude (won't be recursed into) - comparison done case-insensitively.
5-
EXCLUDE_DIRS = {"node_modules", ".git"}
5+
EXCLUDE_DIRS = {"node_modules", ".git", "dist", ".github"}
66

77
# Files to exclude (by exact name, case-insensitive)
88
EXCLUDE_FILES = {
@@ -19,7 +19,9 @@
1919
"package-lock.json",
2020
"allcode.py",
2121
"readme.md",
22-
"allcode.txt", # Exclude the output file
22+
"allcode.txt",
23+
".env.development",
24+
"vite-env.d.ts",
2325
}
2426

2527

0 commit comments

Comments
 (0)