We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b737283 commit e11bd00Copy full SHA for e11bd00
src/snapshot-generator.ts
@@ -141,8 +141,6 @@ function getNonEmptyValue(str?: string) {
141
// getDepgraphFiles recursively finds all files that match the filename within the directory
142
function getDepgraphFiles(directory: string, filename: string): string[] {
143
let files: string[] = [];
144
- // debug only
145
- files = readdirSync(directory);
146
try {
147
files = readdirSync(directory)
148
.filter((f: string) => f === filename)
0 commit comments