lighthouse 10.3.0-dev.20230706 → 10.3.0-dev.20230708
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.
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
export default FRGatherer;
|
|
2
2
|
/**
|
|
3
|
-
* Base class for all gatherers
|
|
4
|
-
* Most extending classes should implement the Fraggle Rock API and let this class handle translation.
|
|
5
|
-
* See core/gather/gatherers/gatherer.js for legacy method explanations.
|
|
3
|
+
* Base class for all gatherers.
|
|
6
4
|
*
|
|
7
5
|
* @implements {LH.Gatherer.GathererInstance}
|
|
8
6
|
* @implements {LH.Gatherer.FRGathererInstance}
|
|
@@ -9,9 +9,7 @@ import * as LH from '../../types/lh.js';
|
|
|
9
9
|
/* eslint-disable no-unused-vars */
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* Base class for all gatherers
|
|
13
|
-
* Most extending classes should implement the Fraggle Rock API and let this class handle translation.
|
|
14
|
-
* See core/gather/gatherers/gatherer.js for legacy method explanations.
|
|
12
|
+
* Base class for all gatherers.
|
|
15
13
|
*
|
|
16
14
|
* @implements {LH.Gatherer.GathererInstance}
|
|
17
15
|
* @implements {LH.Gatherer.FRGathererInstance}
|
|
@@ -80,6 +80,7 @@ class NetworkRecorder extends RequestEventEmitter {
|
|
|
80
80
|
const request = new NetworkRequest();
|
|
81
81
|
request.onRequestWillBeSent(data);
|
|
82
82
|
request.sessionId = event.sessionId;
|
|
83
|
+
request.sessionTargetType = event.targetType;
|
|
83
84
|
this.onRequestStarted(request);
|
|
84
85
|
log.verbose('network', `request will be sent to ${request.url}`);
|
|
85
86
|
return;
|
package/package.json
CHANGED