lighthouse 9.5.0-dev.20220412 → 9.5.0-dev.20220415
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/audits/installable-manifest.js +16 -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/shared/localization/locales/en-US.json +3 -0
- package/shared/localization/locales/en-XL.json +3 -0
- package/third-party/chromium-synchronization/installability-errors-test.js +1 -0
- package/types/global-lh.d.ts +3 -0
|
@@ -1067,6 +1067,9 @@
|
|
|
1067
1067
|
"lighthouse-core/audits/installable-manifest.js | protocol-timeout": {
|
|
1068
1068
|
"message": "Lighthouse could not determine if there was a service worker. Please try with a newer version of Chrome."
|
|
1069
1069
|
},
|
|
1070
|
+
"lighthouse-core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1071
|
+
"message": "The manifest URL scheme ({scheme}) is not supported on Android."
|
|
1072
|
+
},
|
|
1070
1073
|
"lighthouse-core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1071
1074
|
"message": "Manifest start URL is not valid"
|
|
1072
1075
|
},
|
|
@@ -1067,6 +1067,9 @@
|
|
|
1067
1067
|
"lighthouse-core/audits/installable-manifest.js | protocol-timeout": {
|
|
1068
1068
|
"message": "L̂íĝh́t̂h́ôúŝé ĉóûĺd̂ ńôt́ d̂ét̂ér̂ḿîńê íf̂ t́ĥér̂é ŵáŝ á ŝér̂v́îćê ẃôŕk̂ér̂. Ṕl̂éâśê t́r̂ý ŵít̂h́ â ńêẃêŕ v̂ér̂śîón̂ óf̂ Ćĥŕôḿê."
|
|
1069
1069
|
},
|
|
1070
|
+
"lighthouse-core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1071
|
+
"message": "T̂h́ê ḿâńîf́êśt̂ ÚR̂Ĺ ŝćĥém̂é ({scheme}) îś n̂ót̂ śûṕp̂ór̂t́êd́ ôń Âńd̂ŕôíd̂."
|
|
1072
|
+
},
|
|
1070
1073
|
"lighthouse-core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1071
1074
|
"message": "M̂án̂íf̂éŝt́ ŝt́âŕt̂ ÚR̂Ĺ îś n̂ót̂ v́âĺîd́"
|
|
1072
1075
|
},
|
|
@@ -69,6 +69,7 @@ Array [
|
|
|
69
69
|
"platform-not-supported-on-android",
|
|
70
70
|
"prefer-related-applications",
|
|
71
71
|
"prefer-related-applications-only-beta-stable",
|
|
72
|
+
"scheme-not-supported-for-webapk",
|
|
72
73
|
"start-url-not-valid",
|
|
73
74
|
"url-not-supported-for-webapk",
|
|
74
75
|
"warn-not-offline-capable",
|
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;
|