lighthouse 12.3.0-dev.20250106 → 12.3.0-dev.20250108
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/computed/trace-engine-result.js +1 -9
- package/core/gather/gatherers/inspector-issues.js +1 -0
- package/package.json +4 -4
- package/report/renderer/i18n-formatter.d.ts +1 -1
- package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +1 -0
- package/types/artifacts.d.ts +1 -0
|
@@ -20,15 +20,7 @@ class TraceEngineResult {
|
|
|
20
20
|
* @return {Promise<LH.Artifacts.TraceEngineResult>}
|
|
21
21
|
*/
|
|
22
22
|
static async runTraceEngine(traceEvents) {
|
|
23
|
-
const
|
|
24
|
-
|
|
25
|
-
// @ts-expect-error Temporarily disable this handler
|
|
26
|
-
// It's not currently used anywhere in trace engine insights or Lighthouse.
|
|
27
|
-
// TODO: Re-enable this when its memory usage is improved in the trace engine
|
|
28
|
-
// https://github.com/GoogleChrome/lighthouse/issues/16111
|
|
29
|
-
delete traceHandlers.Invalidations;
|
|
30
|
-
|
|
31
|
-
const processor = new TraceEngine.TraceProcessor(traceHandlers);
|
|
23
|
+
const processor = new TraceEngine.TraceProcessor(TraceEngine.TraceHandlers);
|
|
32
24
|
|
|
33
25
|
// eslint-disable-next-line max-len
|
|
34
26
|
await processor.parse(/** @type {import('@paulirish/trace_engine').Types.Events.Event[]} */ (
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "12.3.0-dev.
|
|
4
|
+
"version": "12.3.0-dev.20250108",
|
|
5
5
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
6
6
|
"main": "./core/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
"chrome-launcher": "^1.1.2",
|
|
188
188
|
"configstore": "^5.0.1",
|
|
189
189
|
"csp_evaluator": "1.1.1",
|
|
190
|
-
"devtools-protocol": "0.0.
|
|
190
|
+
"devtools-protocol": "0.0.1402036",
|
|
191
191
|
"enquirer": "^2.3.6",
|
|
192
192
|
"http-link-header": "^1.1.1",
|
|
193
193
|
"intl-messageformat": "^10.5.3",
|
|
@@ -211,8 +211,8 @@
|
|
|
211
211
|
"yargs-parser": "^21.0.0"
|
|
212
212
|
},
|
|
213
213
|
"resolutions": {
|
|
214
|
-
"puppeteer/**/devtools-protocol": "0.0.
|
|
215
|
-
"puppeteer-core/**/devtools-protocol": "0.0.
|
|
214
|
+
"puppeteer/**/devtools-protocol": "0.0.1402036",
|
|
215
|
+
"puppeteer-core/**/devtools-protocol": "0.0.1402036"
|
|
216
216
|
},
|
|
217
217
|
"repository": "GoogleChrome/lighthouse",
|
|
218
218
|
"keywords": [
|
|
@@ -3,7 +3,7 @@ export class I18nFormatter {
|
|
|
3
3
|
* @param {LH.Locale} locale
|
|
4
4
|
*/
|
|
5
5
|
constructor(locale: LH.Locale);
|
|
6
|
-
_locale: "en-US" | "en" | "en-AU" | "en-GB" | "en-IE" | "en-SG" | "en-ZA" | "en-IN" | "ar-XB" | "
|
|
6
|
+
_locale: "ar" | "en-US" | "en" | "en-AU" | "en-GB" | "en-IE" | "en-SG" | "en-ZA" | "en-IN" | "ar-XB" | "bg" | "ca" | "cs" | "da" | "de" | "el" | "en-XL" | "es" | "es-419" | "es-AR" | "es-BO" | "es-BR" | "es-BZ" | "es-CL" | "es-CO" | "es-CR" | "es-CU" | "es-DO" | "es-EC" | "es-GT" | "es-HN" | "es-MX" | "es-NI" | "es-PA" | "es-PE" | "es-PR" | "es-PY" | "es-SV" | "es-US" | "es-UY" | "es-VE" | "fi" | "fil" | "fr" | "he" | "hi" | "hr" | "hu" | "gsw" | "id" | "in" | "it" | "iw" | "ja" | "ko" | "lt" | "lv" | "mo" | "nl" | "nb" | "no" | "pl" | "pt" | "pt-PT" | "ro" | "ru" | "sk" | "sl" | "sr" | "sr-Latn" | "sv" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh" | "zh-HK" | "zh-TW";
|
|
7
7
|
_cachedNumberFormatters: Map<any, any>;
|
|
8
8
|
/**
|
|
9
9
|
* @param {number} number
|
package/types/artifacts.d.ts
CHANGED
|
@@ -544,6 +544,7 @@ declare module Artifacts {
|
|
|
544
544
|
propertyRuleIssue: Crdp.Audits.PropertyRuleIssueDetails[],
|
|
545
545
|
quirksModeIssue: Crdp.Audits.QuirksModeIssueDetails[];
|
|
546
546
|
cookieIssue: Crdp.Audits.CookieIssueDetails[];
|
|
547
|
+
selectElementAccessibilityIssue: Crdp.Audits.SelectElementAccessibilityIssueDetails[];
|
|
547
548
|
sharedArrayBufferIssue: Crdp.Audits.SharedArrayBufferIssueDetails[];
|
|
548
549
|
sharedDictionaryIssue: Crdp.Audits.SharedDictionaryIssueDetails[];
|
|
549
550
|
stylesheetLoadingIssue: Crdp.Audits.StylesheetLoadingIssueDetails[];
|