lighthouse 11.1.0-dev.20230924 → 11.1.0-dev.20230926

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.
@@ -75,6 +75,7 @@ class InspectorIssues extends BaseGatherer {
75
75
  lowTextContrastIssue: [],
76
76
  mixedContentIssue: [],
77
77
  navigatorUserAgentIssue: [],
78
+ propertyRuleIssue: [],
78
79
  quirksModeIssue: [],
79
80
  cookieIssue: [],
80
81
  sharedArrayBufferIssue: [],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "11.1.0-dev.20230924",
4
+ "version": "11.1.0-dev.20230926",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {
@@ -185,7 +185,7 @@
185
185
  "chrome-launcher": "^1.0.0",
186
186
  "configstore": "^5.0.1",
187
187
  "csp_evaluator": "1.1.1",
188
- "devtools-protocol": "0.0.1155343",
188
+ "devtools-protocol": "0.0.1200039",
189
189
  "enquirer": "^2.3.6",
190
190
  "http-link-header": "^1.1.1",
191
191
  "intl-messageformat": "^4.4.0",
@@ -209,8 +209,8 @@
209
209
  "yargs-parser": "^21.0.0"
210
210
  },
211
211
  "resolutions": {
212
- "puppeteer/**/devtools-protocol": "0.0.1155343",
213
- "puppeteer-core/**/devtools-protocol": "0.0.1155343"
212
+ "puppeteer/**/devtools-protocol": "0.0.1200039",
213
+ "puppeteer-core/**/devtools-protocol": "0.0.1200039"
214
214
  },
215
215
  "repository": "GoogleChrome/lighthouse",
216
216
  "keywords": [
@@ -47,6 +47,7 @@ Array [
47
47
  "lowTextContrastIssueDetails",
48
48
  "mixedContentIssueDetails",
49
49
  "navigatorUserAgentIssueDetails",
50
+ "propertyRuleIssueDetails",
50
51
  "quirksModeIssueDetails",
51
52
  "sharedArrayBufferIssueDetails",
52
53
  "stylesheetLoadingIssueDetails",
@@ -587,6 +587,7 @@ declare module Artifacts {
587
587
  lowTextContrastIssue: Crdp.Audits.LowTextContrastIssueDetails[];
588
588
  mixedContentIssue: Crdp.Audits.MixedContentIssueDetails[];
589
589
  navigatorUserAgentIssue: Crdp.Audits.NavigatorUserAgentIssueDetails[];
590
+ propertyRuleIssue: Crdp.Audits.PropertyRuleIssueDetails[],
590
591
  quirksModeIssue: Crdp.Audits.QuirksModeIssueDetails[];
591
592
  cookieIssue: Crdp.Audits.CookieIssueDetails[];
592
593
  sharedArrayBufferIssue: Crdp.Audits.SharedArrayBufferIssueDetails[];