@rankcli/agent-runtime 0.0.5 → 0.0.6
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 +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
- package/src/audit/discovery/link-crawler.ts +2 -1
package/dist/index.js
CHANGED
|
@@ -18218,7 +18218,9 @@ var MEDIUM_PRIORITY_PATTERNS = [
|
|
|
18218
18218
|
];
|
|
18219
18219
|
var EXCLUDE_PATTERNS = [
|
|
18220
18220
|
/\.(png|jpg|jpeg|gif|svg|webp|ico|pdf|zip|tar|gz)$/i,
|
|
18221
|
-
//
|
|
18221
|
+
// Images & archives
|
|
18222
|
+
/\.(json|xml|txt|webmanifest|rss|atom)$/i,
|
|
18223
|
+
// Data files (not HTML)
|
|
18222
18224
|
/^(mailto:|tel:|javascript:|#)/i,
|
|
18223
18225
|
// Non-HTTP
|
|
18224
18226
|
/\/(api|_next|static|assets|cdn)\//i,
|
package/dist/index.mjs
CHANGED
|
@@ -17158,7 +17158,9 @@ var MEDIUM_PRIORITY_PATTERNS = [
|
|
|
17158
17158
|
];
|
|
17159
17159
|
var EXCLUDE_PATTERNS = [
|
|
17160
17160
|
/\.(png|jpg|jpeg|gif|svg|webp|ico|pdf|zip|tar|gz)$/i,
|
|
17161
|
-
//
|
|
17161
|
+
// Images & archives
|
|
17162
|
+
/\.(json|xml|txt|webmanifest|rss|atom)$/i,
|
|
17163
|
+
// Data files (not HTML)
|
|
17162
17164
|
/^(mailto:|tel:|javascript:|#)/i,
|
|
17163
17165
|
// Non-HTTP
|
|
17164
17166
|
/\/(api|_next|static|assets|cdn)\//i,
|
package/package.json
CHANGED
|
@@ -26,7 +26,8 @@ const MEDIUM_PRIORITY_PATTERNS = [
|
|
|
26
26
|
|
|
27
27
|
// Patterns to exclude
|
|
28
28
|
const EXCLUDE_PATTERNS = [
|
|
29
|
-
/\.(png|jpg|jpeg|gif|svg|webp|ico|pdf|zip|tar|gz)$/i, //
|
|
29
|
+
/\.(png|jpg|jpeg|gif|svg|webp|ico|pdf|zip|tar|gz)$/i, // Images & archives
|
|
30
|
+
/\.(json|xml|txt|webmanifest|rss|atom)$/i, // Data files (not HTML)
|
|
30
31
|
/^(mailto:|tel:|javascript:|#)/i, // Non-HTTP
|
|
31
32
|
/\/(api|_next|static|assets|cdn)\//i, // Technical paths
|
|
32
33
|
/[?&](utm_|ref=|source=)/i, // Tracking params
|