chore: lighthouse report has no PWA section anymore (#10258)

This commit is contained in:
Joshua Chen 2024-07-01 13:44:02 -04:00 committed by GitHub
parent 6dd9a5076e
commit 03e11dc0c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,7 @@
// @ts-check
/** @typedef {Record<'performance' | 'accessibility' | 'best-practices' | 'seo' | 'pwa', number>} LighthouseSummary */
/** @typedef {Record<'performance' | 'accessibility' | 'best-practices' | 'seo', number>} LighthouseSummary */
/** @type {Record<keyof LighthouseSummary, string>} */
const summaryKeys = {
@ -15,7 +15,6 @@ const summaryKeys = {
accessibility: 'Accessibility',
'best-practices': 'Best Practices',
seo: 'SEO',
pwa: 'PWA',
};
/** @param {number} rawScore */