Updating files

This commit is contained in:
DaanV2
2024-08-18 17:55:00 +02:00
parent 668e069e3c
commit 5375762bd0
2 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ export namespace Files {
cwd = cwd.replace("\\", "/");
const options: FastGlob.Options = { onlyFiles: true, absolute: true, cwd: cwd };
let entries = FastGlob.sync(["*.json", "**/*.json"], options);
const entries = FastGlob.sync(["*.json", "**/*.json"], options);
return entries;
}