lighthouse 11.4.0-dev.20240107 → 11.4.0-dev.20240108
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/core/audits/bf-cache.js
CHANGED
|
@@ -61,7 +61,7 @@ class BFCache extends Audit {
|
|
|
61
61
|
failureTitle: str_(UIStrings.failureTitle),
|
|
62
62
|
description: str_(UIStrings.description),
|
|
63
63
|
supportedModes: ['navigation', 'timespan'],
|
|
64
|
-
guidanceLevel:
|
|
64
|
+
guidanceLevel: 4,
|
|
65
65
|
requiredArtifacts: ['BFCacheFailures', 'HostProduct'],
|
|
66
66
|
scoreDisplayMode: Audit.SCORING_MODES.BINARY,
|
|
67
67
|
};
|
|
@@ -33,7 +33,7 @@ class UnusedCSSRules extends ByteEfficiencyAudit {
|
|
|
33
33
|
title: str_(UIStrings.title),
|
|
34
34
|
description: str_(UIStrings.description),
|
|
35
35
|
scoreDisplayMode: ByteEfficiencyAudit.SCORING_MODES.METRIC_SAVINGS,
|
|
36
|
-
guidanceLevel:
|
|
36
|
+
guidanceLevel: 1,
|
|
37
37
|
requiredArtifacts: ['CSSUsage', 'URL', 'devtoolsLogs', 'traces', 'GatherContext'],
|
|
38
38
|
};
|
|
39
39
|
}
|
|
@@ -67,7 +67,7 @@ class UnusedJavaScript extends ByteEfficiencyAudit {
|
|
|
67
67
|
title: str_(UIStrings.title),
|
|
68
68
|
description: str_(UIStrings.description),
|
|
69
69
|
scoreDisplayMode: ByteEfficiencyAudit.SCORING_MODES.METRIC_SAVINGS,
|
|
70
|
-
guidanceLevel:
|
|
70
|
+
guidanceLevel: 1,
|
|
71
71
|
requiredArtifacts: ['JsUsage', 'Scripts', 'SourceMaps', 'GatherContext',
|
|
72
72
|
'devtoolsLogs', 'traces', 'URL'],
|
|
73
73
|
};
|
|
@@ -37,7 +37,7 @@ class PrioritizeLcpImage extends Audit {
|
|
|
37
37
|
title: str_(UIStrings.title),
|
|
38
38
|
description: str_(UIStrings.description),
|
|
39
39
|
supportedModes: ['navigation'],
|
|
40
|
-
guidanceLevel:
|
|
40
|
+
guidanceLevel: 4,
|
|
41
41
|
requiredArtifacts: ['traces', 'devtoolsLogs', 'GatherContext', 'URL', 'TraceElements'],
|
|
42
42
|
scoreDisplayMode: Audit.SCORING_MODES.METRIC_SAVINGS,
|
|
43
43
|
};
|
|
@@ -34,7 +34,7 @@ class UnsizedImages extends Audit {
|
|
|
34
34
|
title: str_(UIStrings.title),
|
|
35
35
|
failureTitle: str_(UIStrings.failureTitle),
|
|
36
36
|
description: str_(UIStrings.description),
|
|
37
|
-
guidanceLevel:
|
|
37
|
+
guidanceLevel: 4,
|
|
38
38
|
requiredArtifacts: ['ImageElements'],
|
|
39
39
|
scoreDisplayMode: Audit.SCORING_MODES.METRIC_SAVINGS,
|
|
40
40
|
};
|
package/package.json
CHANGED