lighthouse 9.5.0-dev.20220413 → 9.5.0-dev.20220416
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/dist/report/bundle.esm.js +299 -299
- package/lighthouse-cli/run.js +9 -24
- package/lighthouse-cli/test/smokehouse/lighthouse-runners/bundle.js +16 -4
- package/lighthouse-cli/test/smokehouse/report-assert.js +3 -3
- package/lighthouse-cli/test/smokehouse/smokehouse.js +1 -0
- package/lighthouse-core/fraggle-rock/api.js +1 -1
- package/lighthouse-core/fraggle-rock/gather/driver.js +1 -1
- package/lighthouse-core/fraggle-rock/gather/navigation-runner.js +5 -4
- package/lighthouse-core/fraggle-rock/gather/session.js +2 -2
- package/lighthouse-core/fraggle-rock/gather/snapshot-runner.js +1 -1
- package/lighthouse-core/fraggle-rock/gather/timespan-runner.js +1 -1
- package/lighthouse-core/index.js +32 -1
- package/lighthouse-core/lib/tracehouse/trace-processor.js +10 -5
- package/package.json +7 -5
- package/report/renderer/components.js +299 -299
- package/types/global-lh.d.ts +3 -0
package/types/global-lh.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ import * as Settings from './lhr/settings';
|
|
|
22
22
|
import StructuredData_ from './structured-data';
|
|
23
23
|
import Treemap_ from './lhr/treemap';
|
|
24
24
|
import UserFlow_ from './user-flow';
|
|
25
|
+
import puppeteer from 'puppeteer-core';
|
|
25
26
|
|
|
26
27
|
// Construct hierarchy of global types under the LH namespace.
|
|
27
28
|
declare global {
|
|
@@ -29,6 +30,8 @@ declare global {
|
|
|
29
30
|
export type ArbitraryEqualityMap = ArbitraryEqualityMap_;
|
|
30
31
|
export type NavigationRequestor = string | (() => Promise<void> | void);
|
|
31
32
|
|
|
33
|
+
export import Puppeteer = puppeteer;
|
|
34
|
+
|
|
32
35
|
// artifacts.d.ts
|
|
33
36
|
export import Artifacts = Artifacts_.Artifacts;
|
|
34
37
|
export import BaseArtifacts = Artifacts_.BaseArtifacts;
|