lighthouse 12.7.1-dev.20250709 → 12.7.1-dev.20250710
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.
|
@@ -33,9 +33,11 @@ const exclusions = {
|
|
|
33
33
|
],
|
|
34
34
|
};
|
|
35
35
|
|
|
36
|
-
// https://github.com/GoogleChrome/lighthouse/issues/14271
|
|
37
36
|
for (const array of Object.values(exclusions)) {
|
|
37
|
+
// https://github.com/GoogleChrome/lighthouse/issues/14271
|
|
38
38
|
array.push('lantern-idle-callback-short');
|
|
39
|
+
// glitch is gone.
|
|
40
|
+
array.push('issues-mixed-content');
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
export default exclusions;
|
|
@@ -515,8 +515,8 @@ class MainThreadTasks {
|
|
|
515
515
|
if (!url) continue;
|
|
516
516
|
// Add unique URLs to our overall tree.
|
|
517
517
|
if (!allURLsInTree.includes(url)) allURLsInTree.push(url);
|
|
518
|
-
// Don't add
|
|
519
|
-
if (attributableURLs
|
|
518
|
+
// Don't add duplicate URLs
|
|
519
|
+
if (attributableURLs.includes(url)) continue;
|
|
520
520
|
attributableURLs.push(url);
|
|
521
521
|
}
|
|
522
522
|
|
package/package.json
CHANGED