@rankcli/agent-runtime 0.0.18 → 0.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17449,7 +17449,7 @@ async function runFullAudit(options) {
|
|
|
17449
17449
|
});
|
|
17450
17450
|
return createReport(url, domain, allIssues, pages);
|
|
17451
17451
|
}
|
|
17452
|
-
const html = fetchResult.data;
|
|
17452
|
+
const html = fetchResult.data.replace(/<\/?noscript[^>]*>/gi, "");
|
|
17453
17453
|
const headers = fetchResult.headers;
|
|
17454
17454
|
console.error(`\u{1F4DD} Phase 2: Running synchronous HTML checks (tier: ${tier}, limit: ${checksLimit})...`);
|
|
17455
17455
|
const onPageResult = analyzeOnPage(html, url);
|
package/dist/index.mjs
CHANGED
|
@@ -13906,7 +13906,7 @@ async function runFullAudit(options) {
|
|
|
13906
13906
|
});
|
|
13907
13907
|
return createReport(url, domain, allIssues, pages);
|
|
13908
13908
|
}
|
|
13909
|
-
const html = fetchResult.data;
|
|
13909
|
+
const html = fetchResult.data.replace(/<\/?noscript[^>]*>/gi, "");
|
|
13910
13910
|
const headers = fetchResult.headers;
|
|
13911
13911
|
console.error(`\u{1F4DD} Phase 2: Running synchronous HTML checks (tier: ${tier}, limit: ${checksLimit})...`);
|
|
13912
13912
|
const onPageResult = analyzeOnPage(html, url);
|