From e11bd00d83496a714b06a73abc4a1da3a8211b13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Justin=20Holgu=C3=ADn?= Date: Thu, 15 May 2025 09:08:06 -0700 Subject: [PATCH] Remove debug line Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/snapshot-generator.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/snapshot-generator.ts b/src/snapshot-generator.ts index 3329960..f997f8e 100644 --- a/src/snapshot-generator.ts +++ b/src/snapshot-generator.ts @@ -141,8 +141,6 @@ function getNonEmptyValue(str?: string) { // getDepgraphFiles recursively finds all files that match the filename within the directory function getDepgraphFiles(directory: string, filename: string): string[] { let files: string[] = []; - // debug only - files = readdirSync(directory); try { files = readdirSync(directory) .filter((f: string) => f === filename)