Remove debug line

Co-authored-by: Copilot <[email protected]>
This commit is contained in:
Justin Holguín
2025-05-15 09:08:06 -07:00
committed by GitHub
co-authored by Copilot
parent b737283803
commit e11bd00d83
-2
View File
@@ -141,8 +141,6 @@ function getNonEmptyValue(str?: string) {
// getDepgraphFiles recursively finds all files that match the filename within the directory // getDepgraphFiles recursively finds all files that match the filename within the directory
function getDepgraphFiles(directory: string, filename: string): string[] { function getDepgraphFiles(directory: string, filename: string): string[] {
let files: string[] = []; let files: string[] = [];
// debug only
files = readdirSync(directory);
try { try {
files = readdirSync(directory) files = readdirSync(directory)
.filter((f: string) => f === filename) .filter((f: string) => f === filename)