diff --git a/package-lock.json b/package-lock.json index 1c0c59c..7dfc33c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pa-website-validator-ng", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pa-website-validator-ng", - "version": "1.0.7", + "version": "1.0.8", "license": "BSD-3-Clause", "dependencies": { "axios": "^1.7.4", diff --git a/package.json b/package.json index 8c1f427..0d3f123 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pa-website-validator-ng", - "version": "1.0.7", + "version": "1.0.8", "main": "index.js", "type": "module", "scripts": { diff --git a/src/AuditManager.ts b/src/AuditManager.ts index 9801d55..2d986a8 100644 --- a/src/AuditManager.ts +++ b/src/AuditManager.ts @@ -21,7 +21,7 @@ async function collectAudits() { const files = sync( path.dirname(fileURLToPath(import.meta.url)) + "/audits/**/index.**", { - ignore: ["**/index.d.ts"], + ignore: ["**/*.d.ts"], }, ); diff --git a/src/GathererManager.ts b/src/GathererManager.ts index 4cd9b8e..eeebb28 100644 --- a/src/GathererManager.ts +++ b/src/GathererManager.ts @@ -23,7 +23,7 @@ async function collectGatherers() { const __dirname = path.dirname(fileURLToPath(import.meta.url)); const files = sync(__dirname + "/gatherers/**/*.**", { - ignore: ["**/index.d.ts"], + ignore: ["**/*.d.ts"], }); gatherers = {};