lighthouse 12.2.1-dev.20241102 → 12.2.1-dev.20241104
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.
|
@@ -170,6 +170,10 @@ class TargetManager extends ProtocolEventEmitter {
|
|
|
170
170
|
// Sometimes targets can be closed before we even have a chance to listen to their network activity.
|
|
171
171
|
if (/Target closed/.test(err.message)) return;
|
|
172
172
|
|
|
173
|
+
// `Target.getTargetInfo` is not implemented for certain target types.
|
|
174
|
+
// Lighthouse isn't interested in these targets anyway so we can just ignore them.
|
|
175
|
+
if (/'Target.getTargetInfo' wasn't found/.test(err)) return;
|
|
176
|
+
|
|
173
177
|
// Worker targets can be a bit fickle and we only enable them for diagnostic purposes.
|
|
174
178
|
// We shouldn't throw a fatal error if there were issues attaching to them.
|
|
175
179
|
if (targetType === 'worker') {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "12.2.1-dev.
|
|
4
|
+
"version": "12.2.1-dev.20241104",
|
|
5
5
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
6
6
|
"main": "./core/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
"dependencies": {
|
|
184
184
|
"@paulirish/trace_engine": "0.0.32",
|
|
185
185
|
"@sentry/node": "^7.0.0",
|
|
186
|
-
"axe-core": "^4.10.
|
|
186
|
+
"axe-core": "^4.10.2",
|
|
187
187
|
"chrome-launcher": "^1.1.2",
|
|
188
188
|
"configstore": "^5.0.1",
|
|
189
189
|
"csp_evaluator": "1.1.1",
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
"robots-parser": "^3.0.1",
|
|
205
205
|
"semver": "^5.3.0",
|
|
206
206
|
"speedline-core": "^1.4.3",
|
|
207
|
-
"third-party-web": "^0.
|
|
207
|
+
"third-party-web": "^0.26.1",
|
|
208
208
|
"tldts-icann": "^6.1.16",
|
|
209
209
|
"ws": "^7.0.0",
|
|
210
210
|
"yargs": "^17.3.1",
|