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.
Files changed (69) hide show
  1. package/dist/report/bundle.esm.js +67 -384
  2. package/dist/report/flow.js +20 -25
  3. package/dist/report/standalone.js +18 -23
  4. package/lighthouse-cli/test/smokehouse/core-tests.js +2 -0
  5. package/lighthouse-cli/test/smokehouse/frontends/lib.js +1 -3
  6. package/lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js +1 -3
  7. package/lighthouse-cli/test/smokehouse/lighthouse-runners/cli.js +1 -0
  8. package/lighthouse-cli/test/smokehouse/readme.md +5 -4
  9. package/lighthouse-cli/test/smokehouse/report-assert.js +16 -13
  10. package/lighthouse-cli/test/smokehouse/version-check-test.js +46 -0
  11. package/lighthouse-cli/test/smokehouse/version-check.js +49 -0
  12. package/lighthouse-core/audits/bootup-time.js +2 -70
  13. package/lighthouse-core/audits/byte-efficiency/duplicated-javascript.js +3 -5
  14. package/lighthouse-core/audits/byte-efficiency/legacy-javascript.js +2 -5
  15. package/lighthouse-core/audits/byte-efficiency/unminified-javascript.js +4 -2
  16. package/lighthouse-core/audits/byte-efficiency/unused-javascript.js +3 -1
  17. package/lighthouse-core/audits/deprecations.js +603 -28
  18. package/lighthouse-core/audits/installable-manifest.js +27 -6
  19. package/lighthouse-core/audits/long-tasks.js +3 -3
  20. package/lighthouse-core/audits/metrics/experimental-interaction-to-next-paint.js +88 -0
  21. package/lighthouse-core/audits/network-requests.js +79 -62
  22. package/lighthouse-core/audits/preload-lcp-image.js +33 -7
  23. package/lighthouse-core/audits/third-party-summary.js +3 -3
  24. package/lighthouse-core/audits/work-during-interaction.js +280 -0
  25. package/lighthouse-core/computed/metrics/responsiveness.js +157 -0
  26. package/lighthouse-core/config/config-helpers.js +1 -1
  27. package/lighthouse-core/config/metrics-to-audits.js +5 -0
  28. package/lighthouse-core/fraggle-rock/config/default-config.js +9 -1
  29. package/lighthouse-core/fraggle-rock/gather/base-artifacts.js +2 -2
  30. package/lighthouse-core/fraggle-rock/gather/session.js +8 -2
  31. package/lighthouse-core/gather/driver.js +21 -14
  32. package/lighthouse-core/gather/gather-runner.js +2 -4
  33. package/lighthouse-core/gather/gatherers/css-usage.js +59 -34
  34. package/lighthouse-core/gather/gatherers/trace-elements.js +21 -2
  35. package/lighthouse-core/lib/arbitrary-equality-map.js +2 -2
  36. package/lighthouse-core/lib/dependency-graph/network-node.js +1 -1
  37. package/lighthouse-core/lib/i18n/i18n.js +2 -0
  38. package/lighthouse-core/lib/minify-trace.js +2 -0
  39. package/lighthouse-core/lib/script-helpers.js +24 -0
  40. package/lighthouse-core/lib/stack-packs.js +8 -5
  41. package/lighthouse-core/lib/tracehouse/task-groups.js +1 -0
  42. package/lighthouse-core/lib/tracehouse/task-summary.js +87 -0
  43. package/lighthouse-core/lib/tracehouse/trace-processor.js +39 -14
  44. package/lighthouse-core/runner.js +1 -1
  45. package/lighthouse-core/util-commonjs.js +20 -18
  46. package/package.json +10 -8
  47. package/report/assets/styles.css +5 -2
  48. package/report/clients/bundle.js +1 -0
  49. package/report/renderer/components.js +1 -1
  50. package/report/renderer/details-renderer.js +4 -4
  51. package/report/renderer/performance-category-renderer.js +15 -11
  52. package/report/renderer/util.js +20 -18
  53. package/report/test/renderer/__snapshots__/report-renderer-axe-test.js.snap +6 -98
  54. package/report/test/renderer/details-renderer-test.js +9 -9
  55. package/report/test/renderer/performance-category-renderer-test.js +31 -0
  56. package/report/test/renderer/report-renderer-axe-test.js +3 -15
  57. package/report/test-assets/faux-psi-template.html +3 -2
  58. package/report/test-assets/faux-psi.js +22 -1
  59. package/shared/localization/locales/en-US.json +244 -4
  60. package/shared/localization/locales/en-XL.json +244 -4
  61. package/shared/localization/swap-locale.js +2 -1
  62. package/third-party/chromium-synchronization/installability-errors-test.js +1 -0
  63. package/third-party/snyk/snapshot.json +2 -3
  64. package/tsconfig.json +1 -0
  65. package/types/artifacts.d.ts +40 -1
  66. package/types/lhr/audit-details.d.ts +3 -1
  67. package/types/smokehouse.d.ts +1 -1
  68. package/changelog.md +0 -5902
  69. package/lighthouse-core/scripts/package.json +0 -4
@@ -1,4 +0,0 @@
1
- {
2
- "type": "module",
3
- "//": "Any directory that uses `import ... from` or `export ...` must be type module. Temporary file until root package.json is type: module"
4
- }