lighthouse 12.3.0-dev.20250218 → 12.3.0-dev.20250219
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.
|
@@ -84,6 +84,7 @@ class InspectorIssues extends BaseGatherer {
|
|
|
84
84
|
sharedArrayBufferIssue: [],
|
|
85
85
|
sharedDictionaryIssue: [],
|
|
86
86
|
stylesheetLoadingIssue: [],
|
|
87
|
+
sriMessageSignatureIssue: [],
|
|
87
88
|
federatedAuthUserInfoRequestIssue: [],
|
|
88
89
|
};
|
|
89
90
|
const keys = /** @type {Array<keyof LH.Artifacts['InspectorIssues']>} */(Object.keys(artifact));
|
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.20250219",
|
|
5
5
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
6
6
|
"main": "./core/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
"chrome-launcher": "^1.1.2",
|
|
189
189
|
"configstore": "^5.0.1",
|
|
190
190
|
"csp_evaluator": "1.1.1",
|
|
191
|
-
"devtools-protocol": "0.0.
|
|
191
|
+
"devtools-protocol": "^0.0.1421213",
|
|
192
192
|
"enquirer": "^2.3.6",
|
|
193
193
|
"http-link-header": "^1.1.1",
|
|
194
194
|
"intl-messageformat": "^10.5.3",
|
|
@@ -212,8 +212,8 @@
|
|
|
212
212
|
"yargs-parser": "^21.0.0"
|
|
213
213
|
},
|
|
214
214
|
"resolutions": {
|
|
215
|
-
"puppeteer/**/devtools-protocol": "0.0.
|
|
216
|
-
"puppeteer-core/**/devtools-protocol": "0.0.
|
|
215
|
+
"puppeteer/**/devtools-protocol": "0.0.1421213",
|
|
216
|
+
"puppeteer-core/**/devtools-protocol": "0.0.1421213"
|
|
217
217
|
},
|
|
218
218
|
"repository": "GoogleChrome/lighthouse",
|
|
219
219
|
"keywords": [
|
package/types/artifacts.d.ts
CHANGED
|
@@ -548,6 +548,7 @@ declare module Artifacts {
|
|
|
548
548
|
selectElementAccessibilityIssue: Crdp.Audits.SelectElementAccessibilityIssueDetails[];
|
|
549
549
|
sharedArrayBufferIssue: Crdp.Audits.SharedArrayBufferIssueDetails[];
|
|
550
550
|
sharedDictionaryIssue: Crdp.Audits.SharedDictionaryIssueDetails[];
|
|
551
|
+
sriMessageSignatureIssue: Crdp.Audits.SRIMessageSignatureIssueDetails[];
|
|
551
552
|
stylesheetLoadingIssue: Crdp.Audits.StylesheetLoadingIssueDetails[];
|
|
552
553
|
federatedAuthUserInfoRequestIssue: Crdp.Audits.FederatedAuthUserInfoRequestIssueDetails[];
|
|
553
554
|
}
|