lighthouse 9.5.0 → 9.6.3
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 +67 -384
- package/dist/report/flow.js +20 -25
- package/dist/report/standalone.js +18 -23
- package/lighthouse-cli/test/smokehouse/core-tests.js +2 -0
- package/lighthouse-cli/test/smokehouse/frontends/lib.js +1 -3
- package/lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js +1 -3
- package/lighthouse-cli/test/smokehouse/lighthouse-runners/cli.js +1 -0
- package/lighthouse-cli/test/smokehouse/readme.md +5 -4
- package/lighthouse-cli/test/smokehouse/report-assert.js +16 -13
- package/lighthouse-cli/test/smokehouse/version-check-test.js +46 -0
- package/lighthouse-cli/test/smokehouse/version-check.js +49 -0
- package/lighthouse-core/audits/bootup-time.js +2 -70
- package/lighthouse-core/audits/byte-efficiency/duplicated-javascript.js +3 -5
- package/lighthouse-core/audits/byte-efficiency/legacy-javascript.js +2 -5
- package/lighthouse-core/audits/byte-efficiency/unminified-javascript.js +4 -2
- package/lighthouse-core/audits/byte-efficiency/unused-javascript.js +3 -1
- package/lighthouse-core/audits/deprecations.js +603 -28
- package/lighthouse-core/audits/installable-manifest.js +27 -6
- package/lighthouse-core/audits/long-tasks.js +3 -3
- package/lighthouse-core/audits/metrics/experimental-interaction-to-next-paint.js +88 -0
- package/lighthouse-core/audits/network-requests.js +79 -62
- package/lighthouse-core/audits/preload-lcp-image.js +33 -7
- package/lighthouse-core/audits/third-party-summary.js +3 -3
- package/lighthouse-core/audits/work-during-interaction.js +280 -0
- package/lighthouse-core/computed/metrics/responsiveness.js +157 -0
- package/lighthouse-core/config/config-helpers.js +1 -1
- package/lighthouse-core/config/metrics-to-audits.js +5 -0
- package/lighthouse-core/fraggle-rock/config/default-config.js +9 -1
- package/lighthouse-core/fraggle-rock/gather/base-artifacts.js +2 -2
- package/lighthouse-core/fraggle-rock/gather/session.js +8 -2
- package/lighthouse-core/gather/driver.js +21 -14
- package/lighthouse-core/gather/gather-runner.js +2 -4
- package/lighthouse-core/gather/gatherers/css-usage.js +59 -34
- package/lighthouse-core/gather/gatherers/trace-elements.js +21 -2
- package/lighthouse-core/lib/arbitrary-equality-map.js +2 -2
- package/lighthouse-core/lib/dependency-graph/network-node.js +1 -1
- package/lighthouse-core/lib/i18n/i18n.js +2 -0
- package/lighthouse-core/lib/minify-trace.js +2 -0
- package/lighthouse-core/lib/script-helpers.js +24 -0
- package/lighthouse-core/lib/stack-packs.js +8 -5
- package/lighthouse-core/lib/tracehouse/task-groups.js +1 -0
- package/lighthouse-core/lib/tracehouse/task-summary.js +87 -0
- package/lighthouse-core/lib/tracehouse/trace-processor.js +39 -14
- package/lighthouse-core/runner.js +1 -1
- package/lighthouse-core/util-commonjs.js +20 -18
- package/package.json +10 -8
- package/report/assets/styles.css +5 -2
- package/report/clients/bundle.js +1 -0
- package/report/renderer/components.js +1 -1
- package/report/renderer/details-renderer.js +4 -4
- package/report/renderer/performance-category-renderer.js +15 -11
- package/report/renderer/util.js +20 -18
- package/report/test/renderer/__snapshots__/report-renderer-axe-test.js.snap +6 -98
- package/report/test/renderer/details-renderer-test.js +9 -9
- package/report/test/renderer/performance-category-renderer-test.js +31 -0
- package/report/test/renderer/report-renderer-axe-test.js +3 -15
- package/report/test-assets/faux-psi-template.html +3 -2
- package/report/test-assets/faux-psi.js +22 -1
- package/shared/localization/locales/en-US.json +244 -4
- package/shared/localization/locales/en-XL.json +244 -4
- package/shared/localization/swap-locale.js +2 -1
- package/third-party/chromium-synchronization/installability-errors-test.js +1 -0
- package/third-party/snyk/snapshot.json +2 -3
- package/tsconfig.json +1 -0
- package/types/artifacts.d.ts +40 -1
- package/types/lhr/audit-details.d.ts +3 -1
- package/types/smokehouse.d.ts +1 -1
- package/changelog.md +0 -5902
- package/lighthouse-core/scripts/package.json +0 -4