diff --git a/config.js b/config.js index e50a5013..e517b51c 100644 --- a/config.js +++ b/config.js @@ -17,7 +17,7 @@ * For the possible types, see * https://github.com/GoogleChrome/lighthouse/blob/master/typings/config.d.ts. * and - * https://github.com/GoogleChrome/lighthouse/tree/master/lighthouse-core/config + * https://github.com/GoogleChrome/lighthouse/tree/master/core/config * @const {LH.Config} */ const config = { diff --git a/index.cjs b/index.cjs index 6c8038d6..d8654d2d 100644 --- a/index.cjs +++ b/index.cjs @@ -39,7 +39,7 @@ async function main() { } // @ts-ignore let LH handle the CLI - const {begin} = await import('lighthouse/lighthouse-cli/bin.js'); + const {begin} = await import('lighthouse/cli/bin.js'); await begin(); } diff --git a/lighthouse-plugin-publisher-ads/audits/ad-blocking-tasks.js b/lighthouse-plugin-publisher-ads/audits/ad-blocking-tasks.js index e4a332cf..4fe0d719 100644 --- a/lighthouse-plugin-publisher-ads/audits/ad-blocking-tasks.js +++ b/lighthouse-plugin-publisher-ads/audits/ad-blocking-tasks.js @@ -9,7 +9,7 @@ import AdRequestTime from '../computed/ad-request-time.js'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import LongTasks from '../computed/long-tasks.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/ad-render-blocking-resources.js b/lighthouse-plugin-publisher-ads/audits/ad-render-blocking-resources.js index e5869e0c..b2a7e722 100644 --- a/lighthouse-plugin-publisher-ads/audits/ad-render-blocking-resources.js +++ b/lighthouse-plugin-publisher-ads/audits/ad-render-blocking-resources.js @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; // @ts-ignore import {auditNotApplicable} from '../messages/common-strings.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/ad-request-critical-path.js b/lighthouse-plugin-publisher-ads/audits/ad-request-critical-path.js index dfdb809b..a93f5ee0 100644 --- a/lighthouse-plugin-publisher-ads/audits/ad-request-critical-path.js +++ b/lighthouse-plugin-publisher-ads/audits/ad-request-critical-path.js @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/ad-request-from-page-start.js b/lighthouse-plugin-publisher-ads/audits/ad-request-from-page-start.js index cab30ded..cf535819 100644 --- a/lighthouse-plugin-publisher-ads/audits/ad-request-from-page-start.js +++ b/lighthouse-plugin-publisher-ads/audits/ad-request-from-page-start.js @@ -14,7 +14,7 @@ import ComputedAdRequestTime from '../computed/ad-request-time.js'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable, runWarning} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/ad-request-from-tag-load.js b/lighthouse-plugin-publisher-ads/audits/ad-request-from-tag-load.js index ebd81ca3..4b8ddb42 100644 --- a/lighthouse-plugin-publisher-ads/audits/ad-request-from-tag-load.js +++ b/lighthouse-plugin-publisher-ads/audits/ad-request-from-tag-load.js @@ -15,7 +15,7 @@ import ComputedAdRequestTime from '../computed/ad-request-time.js'; import ComputedTagLoadTime from '../computed/tag-load-time.js'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/ad-top-of-viewport.js b/lighthouse-plugin-publisher-ads/audits/ad-top-of-viewport.js index b298a976..35d96d9d 100644 --- a/lighthouse-plugin-publisher-ads/audits/ad-top-of-viewport.js +++ b/lighthouse-plugin-publisher-ads/audits/ad-top-of-viewport.js @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/ads-in-viewport.js b/lighthouse-plugin-publisher-ads/audits/ads-in-viewport.js index 117c1349..d10e8cc7 100644 --- a/lighthouse-plugin-publisher-ads/audits/ads-in-viewport.js +++ b/lighthouse-plugin-publisher-ads/audits/ads-in-viewport.js @@ -15,7 +15,7 @@ import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {isBoxInViewport} from '../utils/geometry.js'; import {isGptIframe} from '../utils/resource-classification.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/async-ad-tags.js b/lighthouse-plugin-publisher-ads/audits/async-ad-tags.js index d480bc4b..2af3fa82 100644 --- a/lighthouse-plugin-publisher-ads/audits/async-ad-tags.js +++ b/lighthouse-plugin-publisher-ads/audits/async-ad-tags.js @@ -14,12 +14,12 @@ import * as array from '../utils/array.js'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; // @ts-ignore -import MainResource from 'lighthouse/lighthouse-core/computed/main-resource.js'; +import MainResource from 'lighthouse/core/computed/main-resource.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {isAdTag, isStaticRequest} from '../utils/resource-classification.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/bid-request-from-page-start.js b/lighthouse-plugin-publisher-ads/audits/bid-request-from-page-start.js index 03048191..5f3e3bfa 100644 --- a/lighthouse-plugin-publisher-ads/audits/bid-request-from-page-start.js +++ b/lighthouse-plugin-publisher-ads/audits/bid-request-from-page-start.js @@ -14,7 +14,7 @@ import ComputedBidRequestTime from '../computed/bid-request-time.js'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/blocking-load-events.js b/lighthouse-plugin-publisher-ads/audits/blocking-load-events.js index 08e40b1b..a24a6d98 100644 --- a/lighthouse-plugin-publisher-ads/audits/blocking-load-events.js +++ b/lighthouse-plugin-publisher-ads/audits/blocking-load-events.js @@ -12,15 +12,15 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; // @ts-expect-error -import ProcessedTrace from 'lighthouse/lighthouse-core/computed/processed-trace.js'; +import ProcessedTrace from 'lighthouse/core/computed/processed-trace.js'; // @ts-expect-error -import ProcessedNavigation from 'lighthouse/lighthouse-core/computed/processed-navigation.js'; +import ProcessedNavigation from 'lighthouse/core/computed/processed-navigation.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/bottleneck-requests.js b/lighthouse-plugin-publisher-ads/audits/bottleneck-requests.js index 10cc4145..5c54b170 100644 --- a/lighthouse-plugin-publisher-ads/audits/bottleneck-requests.js +++ b/lighthouse-plugin-publisher-ads/audits/bottleneck-requests.js @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/cumulative-ad-shift.js b/lighthouse-plugin-publisher-ads/audits/cumulative-ad-shift.js index c3c2ce6a..a3683f56 100644 --- a/lighthouse-plugin-publisher-ads/audits/cumulative-ad-shift.js +++ b/lighthouse-plugin-publisher-ads/audits/cumulative-ad-shift.js @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/deprecated-api-usage.js b/lighthouse-plugin-publisher-ads/audits/deprecated-api-usage.js index ea43dfe4..c3d11ab8 100644 --- a/lighthouse-plugin-publisher-ads/audits/deprecated-api-usage.js +++ b/lighthouse-plugin-publisher-ads/audits/deprecated-api-usage.js @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {isGpt, isGptImplTag} from '../utils/resource-classification.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/duplicate-tags.js b/lighthouse-plugin-publisher-ads/audits/duplicate-tags.js index ba9d432f..61ee270a 100644 --- a/lighthouse-plugin-publisher-ads/audits/duplicate-tags.js +++ b/lighthouse-plugin-publisher-ads/audits/duplicate-tags.js @@ -12,13 +12,13 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; // @ts-ignore -import MainResource from 'lighthouse/lighthouse-core/computed/main-resource.js'; +import MainResource from 'lighthouse/core/computed/main-resource.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; -import {NetworkRequest} from 'lighthouse/lighthouse-core/lib/network-request.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; +import {NetworkRequest} from 'lighthouse/core/lib/network-request.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {containsAnySubstring} from '../utils/resource-classification.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/first-ad-render.js b/lighthouse-plugin-publisher-ads/audits/first-ad-render.js index 5077978f..98fe88f6 100644 --- a/lighthouse-plugin-publisher-ads/audits/first-ad-render.js +++ b/lighthouse-plugin-publisher-ads/audits/first-ad-render.js @@ -14,7 +14,7 @@ import ComputedAdRenderTime from '../computed/ad-render-time.js'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable, runWarning} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/full-width-slots.js b/lighthouse-plugin-publisher-ads/audits/full-width-slots.js index ea39b8e5..ca22b8bb 100644 --- a/lighthouse-plugin-publisher-ads/audits/full-width-slots.js +++ b/lighthouse-plugin-publisher-ads/audits/full-width-slots.js @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {isAdRequest} from '../utils/resource-classification.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/gpt-bids-parallel.js b/lighthouse-plugin-publisher-ads/audits/gpt-bids-parallel.js index 87491e00..0d002995 100644 --- a/lighthouse-plugin-publisher-ads/audits/gpt-bids-parallel.js +++ b/lighthouse-plugin-publisher-ads/audits/gpt-bids-parallel.js @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {assert} from '../utils/asserts.js'; import {auditNotApplicable} from '../messages/common-strings.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/gpt-errors-overall.js b/lighthouse-plugin-publisher-ads/audits/gpt-errors-overall.js index b3216ac5..bf26b014 100644 --- a/lighthouse-plugin-publisher-ads/audits/gpt-errors-overall.js +++ b/lighthouse-plugin-publisher-ads/audits/gpt-errors-overall.js @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {isGpt, isGptImplTag} from '../utils/resource-classification.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/idle-network-times.js b/lighthouse-plugin-publisher-ads/audits/idle-network-times.js index a4970599..afcf6bb9 100644 --- a/lighthouse-plugin-publisher-ads/audits/idle-network-times.js +++ b/lighthouse-plugin-publisher-ads/audits/idle-network-times.js @@ -12,16 +12,16 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; -import MainThreadTasks from 'lighthouse/lighthouse-core/computed/main-thread-tasks.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import MainThreadTasks from 'lighthouse/core/computed/main-thread-tasks.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; // @ts-expect-error -import ProcessedTrace from 'lighthouse/lighthouse-core/computed/processed-trace.js'; +import ProcessedTrace from 'lighthouse/core/computed/processed-trace.js'; // @ts-expect-error -import ProcessedNavigation from 'lighthouse/lighthouse-core/computed/processed-navigation.js'; +import ProcessedNavigation from 'lighthouse/core/computed/processed-navigation.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/loads-ad-tag-over-https.js b/lighthouse-plugin-publisher-ads/audits/loads-ad-tag-over-https.js index 3e2c17e9..84b70b0b 100644 --- a/lighthouse-plugin-publisher-ads/audits/loads-ad-tag-over-https.js +++ b/lighthouse-plugin-publisher-ads/audits/loads-ad-tag-over-https.js @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {isAdTag} from '../utils/resource-classification.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/loads-gpt-from-official-source.js b/lighthouse-plugin-publisher-ads/audits/loads-gpt-from-official-source.js index 924a51cd..2f765467 100644 --- a/lighthouse-plugin-publisher-ads/audits/loads-gpt-from-official-source.js +++ b/lighthouse-plugin-publisher-ads/audits/loads-gpt-from-official-source.js @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {isGptTag} from '../utils/resource-classification.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/script-injected-tags.js b/lighthouse-plugin-publisher-ads/audits/script-injected-tags.js index e62c39cd..4c14785d 100644 --- a/lighthouse-plugin-publisher-ads/audits/script-injected-tags.js +++ b/lighthouse-plugin-publisher-ads/audits/script-injected-tags.js @@ -14,8 +14,8 @@ import * as array from '../utils/array.js'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; -import PageDependencyGraph from 'lighthouse/lighthouse-core/computed/page-dependency-graph.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; +import PageDependencyGraph from 'lighthouse/core/computed/page-dependency-graph.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {computeAdRequestWaterfall} from '../utils/graph.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/serial-header-bidding.js b/lighthouse-plugin-publisher-ads/audits/serial-header-bidding.js index 92af7a8d..4b6cd2cb 100644 --- a/lighthouse-plugin-publisher-ads/audits/serial-header-bidding.js +++ b/lighthouse-plugin-publisher-ads/audits/serial-header-bidding.js @@ -14,12 +14,12 @@ import ComputedAdRequestTime from '../computed/ad-request-time.js'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; // @ts-ignore -import MainResource from 'lighthouse/lighthouse-core/computed/main-resource.js'; +import MainResource from 'lighthouse/core/computed/main-resource.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {bucket} from '../utils/array.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/tag-load-time.js b/lighthouse-plugin-publisher-ads/audits/tag-load-time.js index 75be6413..3736d35b 100644 --- a/lighthouse-plugin-publisher-ads/audits/tag-load-time.js +++ b/lighthouse-plugin-publisher-ads/audits/tag-load-time.js @@ -14,7 +14,7 @@ import ComputedTagLoadTime from '../computed/tag-load-time.js'; -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable, runWarning} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/audits/total-ad-blocking-time.js b/lighthouse-plugin-publisher-ads/audits/total-ad-blocking-time.js index c9246a1b..a7ab179e 100644 --- a/lighthouse-plugin-publisher-ads/audits/total-ad-blocking-time.js +++ b/lighthouse-plugin-publisher-ads/audits/total-ad-blocking-time.js @@ -8,10 +8,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import LongTasks from '../computed/long-tasks.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {auditNotApplicable} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; import {getAttributableUrl} from '../utils/tasks.js'; diff --git a/lighthouse-plugin-publisher-ads/audits/viewport-ad-density.js b/lighthouse-plugin-publisher-ads/audits/viewport-ad-density.js index 5ac85803..71187bee 100644 --- a/lighthouse-plugin-publisher-ads/audits/viewport-ad-density.js +++ b/lighthouse-plugin-publisher-ads/audits/viewport-ad-density.js @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {auditNotApplicable, auditError} from '../messages/common-strings.js'; import {Audit} from 'lighthouse'; diff --git a/lighthouse-plugin-publisher-ads/computed/ad-lantern-metric.js b/lighthouse-plugin-publisher-ads/computed/ad-lantern-metric.js index 406e8c9b..06a04d14 100644 --- a/lighthouse-plugin-publisher-ads/computed/ad-lantern-metric.js +++ b/lighthouse-plugin-publisher-ads/computed/ad-lantern-metric.js @@ -12,16 +12,16 @@ // See the License for the specific language governing permissions and // limitations under the License. -import {BaseNode} from 'lighthouse/lighthouse-core/lib/dependency-graph/base-node.js'; +import {BaseNode} from 'lighthouse/core/lib/dependency-graph/base-node.js'; // eslint-disable-next-line no-unused-vars -import {CPUNode} from 'lighthouse/lighthouse-core/lib/dependency-graph/cpu-node.js'; +import {CPUNode} from 'lighthouse/core/lib/dependency-graph/cpu-node.js'; // @ts-ignore Remove request() below after importing the type. -import LanternMetric from 'lighthouse/lighthouse-core/computed/metrics/lantern-metric.js'; +import LanternMetric from 'lighthouse/core/computed/metrics/lantern-metric.js'; // eslint-disable-next-line no-unused-vars -import {NetworkNode} from 'lighthouse/lighthouse-core/lib/dependency-graph/network-node.js'; +import {NetworkNode} from 'lighthouse/core/lib/dependency-graph/network-node.js'; import { isBidRelatedRequest, diff --git a/lighthouse-plugin-publisher-ads/computed/ad-render-time.js b/lighthouse-plugin-publisher-ads/computed/ad-render-time.js index ba04e32d..4088e7c0 100644 --- a/lighthouse-plugin-publisher-ads/computed/ad-render-time.js +++ b/lighthouse-plugin-publisher-ads/computed/ad-render-time.js @@ -15,17 +15,17 @@ import AdLanternMetric from './ad-lantern-metric.js'; // @ts-ignore -import ComputedMetric from 'lighthouse/lighthouse-core/computed/metrics/metric.js'; +import ComputedMetric from 'lighthouse/core/computed/metrics/metric.js'; // @ts-ignore -import {makeComputedArtifact} from 'lighthouse/lighthouse-core/computed/computed-artifact.js'; +import {makeComputedArtifact} from 'lighthouse/core/computed/computed-artifact.js'; import {getPageStartTime, getImpressionStartTime} from '../utils/network-timing.js'; import {isImpressionPing} from '../utils/resource-classification.js'; // @ts-ignore // eslint-disable-next-line max-len -/** @typedef {import('lighthouse/lighthouse-core/lib/dependency-graph/base-node.js').Node} Node */ +/** @typedef {import('lighthouse/core/lib/dependency-graph/base-node.js').Node} Node */ /** Computes simulated first ad render time using Lantern. */ class LanternAdRenderTime extends AdLanternMetric { diff --git a/lighthouse-plugin-publisher-ads/computed/ad-request-time.js b/lighthouse-plugin-publisher-ads/computed/ad-request-time.js index 2739b458..bd695848 100644 --- a/lighthouse-plugin-publisher-ads/computed/ad-request-time.js +++ b/lighthouse-plugin-publisher-ads/computed/ad-request-time.js @@ -15,17 +15,17 @@ import AdLanternMetric from './ad-lantern-metric.js'; // @ts-ignore -import ComputedMetric from 'lighthouse/lighthouse-core/computed/metrics/metric.js'; +import ComputedMetric from 'lighthouse/core/computed/metrics/metric.js'; // @ts-ignore -import {makeComputedArtifact} from 'lighthouse/lighthouse-core/computed/computed-artifact.js'; +import {makeComputedArtifact} from 'lighthouse/core/computed/computed-artifact.js'; import {getAdStartTime, getPageStartTime} from '../utils/network-timing.js'; import {isAdRequest} from '../utils/resource-classification.js'; // @ts-ignore // eslint-disable-next-line max-len -/** @typedef {import('lighthouse/lighthouse-core/lib/dependency-graph/base-node.js').Node} Node */ +/** @typedef {import('lighthouse/core/lib/dependency-graph/base-node.js').Node} Node */ /** Computes simulated first ad request time using Lantern. */ class LanternAdRequestTime extends AdLanternMetric { diff --git a/lighthouse-plugin-publisher-ads/computed/bid-request-time.js b/lighthouse-plugin-publisher-ads/computed/bid-request-time.js index 6ad268d9..af24651b 100644 --- a/lighthouse-plugin-publisher-ads/computed/bid-request-time.js +++ b/lighthouse-plugin-publisher-ads/computed/bid-request-time.js @@ -15,17 +15,17 @@ import AdLanternMetric from './ad-lantern-metric.js'; // @ts-ignore -import ComputedMetric from 'lighthouse/lighthouse-core/computed/metrics/metric.js'; +import ComputedMetric from 'lighthouse/core/computed/metrics/metric.js'; // @ts-ignore -import {makeComputedArtifact} from 'lighthouse/lighthouse-core/computed/computed-artifact.js'; +import {makeComputedArtifact} from 'lighthouse/core/computed/computed-artifact.js'; import {getAdStartTime, getBidStartTime, getPageStartTime} from '../utils/network-timing.js'; import {isAdRequest, isBidRequest} from '../utils/resource-classification.js'; // @ts-ignore // eslint-disable-next-line max-len -/** @typedef {import('lighthouse/lighthouse-core/lib/dependency-graph/base-node.js').Node} Node */ +/** @typedef {import('lighthouse/core/lib/dependency-graph/base-node.js').Node} Node */ /** Computes simulated first ad request time using Lantern. */ class LanternBidRequestTime extends AdLanternMetric { diff --git a/lighthouse-plugin-publisher-ads/computed/long-tasks.js b/lighthouse-plugin-publisher-ads/computed/long-tasks.js index 5df2b278..522ee067 100644 --- a/lighthouse-plugin-publisher-ads/computed/long-tasks.js +++ b/lighthouse-plugin-publisher-ads/computed/long-tasks.js @@ -14,29 +14,29 @@ import AdLanternMetric from '../computed/ad-lantern-metric.js'; -import {BaseNode} from 'lighthouse/lighthouse-core/lib/dependency-graph/base-node.js'; +import {BaseNode} from 'lighthouse/core/lib/dependency-graph/base-node.js'; // @ts-ignore -import ComputedMetric from 'lighthouse/lighthouse-core/computed/metrics/metric.js'; +import ComputedMetric from 'lighthouse/core/computed/metrics/metric.js'; // eslint-disable-next-line no-unused-vars -import {CPUNode} from 'lighthouse/lighthouse-core/lib/dependency-graph/cpu-node.js'; +import {CPUNode} from 'lighthouse/core/lib/dependency-graph/cpu-node.js'; import {getAttributableUrl} from '../utils/tasks.js'; // @ts-ignore -import LoadSimulator from 'lighthouse/lighthouse-core/computed/load-simulator.js'; +import LoadSimulator from 'lighthouse/core/computed/load-simulator.js'; -import MainThreadTasks from 'lighthouse/lighthouse-core/computed/main-thread-tasks.js'; +import MainThreadTasks from 'lighthouse/core/computed/main-thread-tasks.js'; // @ts-ignore -import {makeComputedArtifact} from 'lighthouse/lighthouse-core/computed/computed-artifact.js'; +import {makeComputedArtifact} from 'lighthouse/core/computed/computed-artifact.js'; // eslint-disable-next-line no-unused-vars -import {NetworkNode} from 'lighthouse/lighthouse-core/lib/dependency-graph/network-node.js'; +import {NetworkNode} from 'lighthouse/core/lib/dependency-graph/network-node.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; -import PageDependencyGraph from 'lighthouse/lighthouse-core/computed/page-dependency-graph.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; +import PageDependencyGraph from 'lighthouse/core/computed/page-dependency-graph.js'; const PROVIDED_LONG_TASK_THRESHOLD_MS = 50; const SIMULATED_LONG_TASK_THRESHOLD_MS = 100; diff --git a/lighthouse-plugin-publisher-ads/computed/tag-load-time.js b/lighthouse-plugin-publisher-ads/computed/tag-load-time.js index 6291b5c4..178c73a6 100644 --- a/lighthouse-plugin-publisher-ads/computed/tag-load-time.js +++ b/lighthouse-plugin-publisher-ads/computed/tag-load-time.js @@ -15,17 +15,17 @@ import AdLanternMetric from './ad-lantern-metric.js'; // @ts-ignore -import ComputedMetric from 'lighthouse/lighthouse-core/computed/metrics/metric.js'; +import ComputedMetric from 'lighthouse/core/computed/metrics/metric.js'; // @ts-ignore -import {makeComputedArtifact} from 'lighthouse/lighthouse-core/computed/computed-artifact.js'; +import {makeComputedArtifact} from 'lighthouse/core/computed/computed-artifact.js'; import {getPageStartTime, getTagEndTime} from '../utils/network-timing.js'; import {isImplTag} from '../utils/resource-classification.js'; // @ts-ignore // eslint-disable-next-line max-len -/** @typedef {import('lighthouse/lighthouse-core/lib/dependency-graph/base-node.js').Node} Node */ +/** @typedef {import('lighthouse/core/lib/dependency-graph/base-node.js').Node} Node */ /** Computes simulated tag load time using Lantern. */ class LanternTagLoadTime extends AdLanternMetric { diff --git a/lighthouse-plugin-publisher-ads/messages/collect-strings.js b/lighthouse-plugin-publisher-ads/messages/collect-strings.js index 51cdd20a..b06d9af3 100644 --- a/lighthouse-plugin-publisher-ads/messages/collect-strings.js +++ b/lighthouse-plugin-publisher-ads/messages/collect-strings.js @@ -13,7 +13,7 @@ // limitations under the License. // Forked from Lighthouse: -// https://github.com/GoogleChrome/lighthouse/blob/master/lighthouse-core/scripts/i18n/collect-strings.js +// https://github.com/GoogleChrome/lighthouse/blob/master/core/scripts/i18n/collect-strings.js 'use strict'; /* eslint-disable no-console, max-len */ diff --git a/lighthouse-plugin-publisher-ads/messages/common-strings.js b/lighthouse-plugin-publisher-ads/messages/common-strings.js index 955c2368..0634fdb6 100644 --- a/lighthouse-plugin-publisher-ads/messages/common-strings.js +++ b/lighthouse-plugin-publisher-ads/messages/common-strings.js @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; const UIStrings = { GROUPS__METRICS: 'Metrics', diff --git a/lighthouse-plugin-publisher-ads/plugin.js b/lighthouse-plugin-publisher-ads/plugin.js index f056b359..da610bd0 100644 --- a/lighthouse-plugin-publisher-ads/plugin.js +++ b/lighthouse-plugin-publisher-ads/plugin.js @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import * as i18n from 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; +import * as i18n from 'lighthouse/core/lib/i18n/i18n.js'; import {group} from './messages/common-strings.js'; diff --git a/lighthouse-plugin-publisher-ads/test/audits/async-ad-tags_test.js b/lighthouse-plugin-publisher-ads/test/audits/async-ad-tags_test.js index 971b3ba3..d0e36d13 100644 --- a/lighthouse-plugin-publisher-ads/test/audits/async-ad-tags_test.js +++ b/lighthouse-plugin-publisher-ads/test/audits/async-ad-tags_test.js @@ -14,8 +14,8 @@ import AsyncAdTags from '../../audits/async-ad-tags.js'; -import MainResource from 'lighthouse/lighthouse-core/computed/main-resource.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import MainResource from 'lighthouse/core/computed/main-resource.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import sinon from 'sinon'; import chai from 'chai'; diff --git a/lighthouse-plugin-publisher-ads/test/audits/full-width-slots_test.js b/lighthouse-plugin-publisher-ads/test/audits/full-width-slots_test.js index 08eff79e..da3002da 100644 --- a/lighthouse-plugin-publisher-ads/test/audits/full-width-slots_test.js +++ b/lighthouse-plugin-publisher-ads/test/audits/full-width-slots_test.js @@ -15,7 +15,7 @@ import chai from 'chai'; import FullWidthSlots from '../../audits/full-width-slots.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import sinon from 'sinon'; const {expect} = chai; diff --git a/lighthouse-plugin-publisher-ads/test/audits/loads-ad-tag-over-https_test.js b/lighthouse-plugin-publisher-ads/test/audits/loads-ad-tag-over-https_test.js index 1a46253a..9ffd08c6 100644 --- a/lighthouse-plugin-publisher-ads/test/audits/loads-ad-tag-over-https_test.js +++ b/lighthouse-plugin-publisher-ads/test/audits/loads-ad-tag-over-https_test.js @@ -14,7 +14,7 @@ import LoadsAdTagOverHttps from '../../audits/loads-ad-tag-over-https.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import sinon from 'sinon'; import chai from 'chai'; diff --git a/lighthouse-plugin-publisher-ads/test/smoke/config.js b/lighthouse-plugin-publisher-ads/test/smoke/config.js index 9dce74c2..fc9b196e 100644 --- a/lighthouse-plugin-publisher-ads/test/smoke/config.js +++ b/lighthouse-plugin-publisher-ads/test/smoke/config.js @@ -17,7 +17,7 @@ * For the possible types, see * https://github.com/GoogleChrome/lighthouse/blob/master/typings/config.d.ts. * and - * https://github.com/GoogleChrome/lighthouse/tree/master/lighthouse-core/config + * https://github.com/GoogleChrome/lighthouse/tree/master/core/config * @const {LH.Config} */ // TODO(jburger): Make Chrome run in headless mode. diff --git a/lighthouse-plugin-publisher-ads/test/smoke/run-smoke.js b/lighthouse-plugin-publisher-ads/test/smoke/run-smoke.js index 5c2a0b06..ff4d776d 100644 --- a/lighthouse-plugin-publisher-ads/test/smoke/run-smoke.js +++ b/lighthouse-plugin-publisher-ads/test/smoke/run-smoke.js @@ -67,7 +67,7 @@ async function run() { }); execAsync( 'cd node_modules/lighthouse && ' + - 'node lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js --tests-path ../../lighthouse-plugin-publisher-ads/test/smoke/smoke-test-dfns.js --retries 3', + 'node cli/test/smokehouse/frontends/smokehouse-bin.js --tests-path ../../lighthouse-plugin-publisher-ads/test/smoke/smoke-test-dfns.js --retries 3', ) .then((result) => { process.stdout.write(result.stdout); diff --git a/lighthouse-plugin-publisher-ads/tsconfig.json b/lighthouse-plugin-publisher-ads/tsconfig.json index 03cb592c..f0c3b195 100644 --- a/lighthouse-plugin-publisher-ads/tsconfig.json +++ b/lighthouse-plugin-publisher-ads/tsconfig.json @@ -24,15 +24,15 @@ "../node_modules/lighthouse/shared/localization/*.js", "../node_modules/lighthouse/root.js", "../node_modules/lighthouse/esm-utils.js", - "../node_modules/lighthouse/lighthouse-core/report/html/renderer/util.js", - "../node_modules/lighthouse/lighthouse-core/report/html/renderer/i18n.js", - "../node_modules/lighthouse/lighthouse-core/lib/network-request.js", - "../node_modules/lighthouse/lighthouse-core/lib/url-shim.js", - "../node_modules/lighthouse/lighthouse-core/lib/lh-error.js", - "../node_modules/lighthouse/lighthouse-core/lib/i18n/*.js", - "../node_modules/lighthouse/lighthouse-core/util.cjs", - "../node_modules/lighthouse/lighthouse-core/lib/dependency-graph/*.js", - "../node_modules/lighthouse/lighthouse-core/lib/third-party-web.js", + "../node_modules/lighthouse/core/report/html/renderer/util.js", + "../node_modules/lighthouse/core/report/html/renderer/i18n.js", + "../node_modules/lighthouse/core/lib/network-request.js", + "../node_modules/lighthouse/core/lib/url-shim.js", + "../node_modules/lighthouse/core/lib/lh-error.js", + "../node_modules/lighthouse/core/lib/i18n/*.js", + "../node_modules/lighthouse/core/util.cjs", + "../node_modules/lighthouse/core/lib/dependency-graph/*.js", + "../node_modules/lighthouse/core/lib/third-party-web.js", ], "exclude": [ "test/**/*.js", diff --git a/lighthouse-plugin-publisher-ads/typings/lighthouse.d.ts b/lighthouse-plugin-publisher-ads/typings/lighthouse.d.ts index 77b6a8b9..9188fb3e 100644 --- a/lighthouse-plugin-publisher-ads/typings/lighthouse.d.ts +++ b/lighthouse-plugin-publisher-ads/typings/lighthouse.d.ts @@ -64,7 +64,7 @@ declare module 'lighthouse' { loadData: LH.Gatherer.LoadData): PhaseResult; } - // Alias used inside lighthouse/lighthouse-core/gatherers/gatherer.js + // Alias used inside lighthouse/core/gatherers/gatherer.js type PhaseResult = void | LH.GathererArtifacts[keyof LH.GathererArtifacts]; } } @@ -80,30 +80,30 @@ declare module 'lighthouse-logger' { } } -declare module 'lighthouse/lighthouse-core/computed/network-records.js' { +declare module 'lighthouse/core/computed/network-records.js' { export default { request(devToolsLog: LH.DevtoolsLog, context: LH.Audit.Context): Promise>; } } -declare module 'lighthouse/lighthouse-core/computed/main-resource.js' { +declare module 'lighthouse/core/computed/main-resource.js' { export default { request(data: {URL: LH.Artifacts['URL'], devtoolsLog: LH.DevtoolsLog}, context: LH.Audit.Context): Promise; } } -declare module 'lighthouse/lighthouse-core/computed/page-dependency-graph.js' { +declare module 'lighthouse/core/computed/page-dependency-graph.js' { export default { getNetworkInitiators(record: LH.Artifacts.NetworkRequest): Array; } } -declare module 'lighthouse/lighthouse-core/computed/main-thread-tasks.js' { +declare module 'lighthouse/core/computed/main-thread-tasks.js' { export default { request(trace: LH.Trace, context: LH.Audit.Context): Promise>; } } -declare module 'lighthouse/lighthouse-core/lib/i18n/i18n.js'; { +declare module 'lighthouse/core/lib/i18n/i18n.js'; { export function createMessageInstanceIdFn(filename: string, fileStrings: Record); } diff --git a/lighthouse-plugin-publisher-ads/utils/graph.js b/lighthouse-plugin-publisher-ads/utils/graph.js index 8bef69d5..7042d183 100644 --- a/lighthouse-plugin-publisher-ads/utils/graph.js +++ b/lighthouse-plugin-publisher-ads/utils/graph.js @@ -12,18 +12,18 @@ // See the License for the specific language governing permissions and // limitations under the License. -import {BaseNode} from 'lighthouse/lighthouse-core/lib/dependency-graph/base-node.js'; +import {BaseNode} from 'lighthouse/core/lib/dependency-graph/base-node.js'; // eslint-disable-next-line no-unused-vars -import {CPUNode} from 'lighthouse/lighthouse-core/lib/dependency-graph/cpu-node.js'; +import {CPUNode} from 'lighthouse/core/lib/dependency-graph/cpu-node.js'; // eslint-disable-next-line no-unused-vars -import {NetworkNode} from 'lighthouse/lighthouse-core/lib/dependency-graph/network-node.js'; +import {NetworkNode} from 'lighthouse/core/lib/dependency-graph/network-node.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; import {assert} from './asserts.js'; import {getNameOrTld, trimUrl} from '../utils/resource-classification.js'; -import PageDependencyGraph from 'lighthouse/lighthouse-core/computed/page-dependency-graph.js'; +import PageDependencyGraph from 'lighthouse/core/computed/page-dependency-graph.js'; import {getTimingsByRecord} from '../utils/network-timing.js'; import {isAdRequest, isAdSense, isGpt, isBidRequest, isAdRelated} from './resource-classification.js'; @@ -31,7 +31,7 @@ import {isAdRequest, isAdSense, isGpt, isBidRequest, isAdRelated} from './resour /** @typedef {LH.TraceEvent} TraceEvent */ /** @typedef {LH.Artifacts.NetworkRequest} NetworkRequest */ // eslint-disable-next-line max-len -/** @typedef {import('lighthouse/lighthouse-core/lib/dependency-graph/base-node.js').Node} Node */ +/** @typedef {import('lighthouse/core/lib/dependency-graph/base-node.js').Node} Node */ /** * @typedef {Object} NetworkSummary diff --git a/lighthouse-plugin-publisher-ads/utils/network-timing.js b/lighthouse-plugin-publisher-ads/utils/network-timing.js index 3618f314..353a99e8 100644 --- a/lighthouse-plugin-publisher-ads/utils/network-timing.js +++ b/lighthouse-plugin-publisher-ads/utils/network-timing.js @@ -15,17 +15,17 @@ import AdLanternMetric from '../computed/ad-lantern-metric.js'; // @ts-ignore -import LoadSimulator from 'lighthouse/lighthouse-core/computed/load-simulator.js'; +import LoadSimulator from 'lighthouse/core/computed/load-simulator.js'; -import NetworkRecords from 'lighthouse/lighthouse-core/computed/network-records.js'; -import PageDependencyGraph from 'lighthouse/lighthouse-core/computed/page-dependency-graph.js'; +import NetworkRecords from 'lighthouse/core/computed/network-records.js'; +import PageDependencyGraph from 'lighthouse/core/computed/page-dependency-graph.js'; import {isAdRequest, isBidRequest, isImplTag, isImpressionPing} from './resource-classification.js'; /** @typedef {LH.Artifacts.NetworkRequest} NetworkRequest */ /** @typedef {LH.Gatherer.Simulation.NodeTiming} NodeTiming */ /* eslint-disable max-len */ -/** @typedef {import('lighthouse/lighthouse-core/lib/dependency-graph/network-node.js').NetworkNode} NetworkNode */ +/** @typedef {import('lighthouse/core/lib/dependency-graph/network-node.js').NetworkNode} NetworkNode */ /* eslint-enable max-len */ /** diff --git a/lighthouse-plugin-publisher-ads/utils/network.js b/lighthouse-plugin-publisher-ads/utils/network.js index b59d5aa0..e7d9916b 100644 --- a/lighthouse-plugin-publisher-ads/utils/network.js +++ b/lighthouse-plugin-publisher-ads/utils/network.js @@ -13,7 +13,7 @@ // limitations under the License. // @ts-ignore -import CacheHeaders from 'lighthouse/lighthouse-core/audits/byte-efficiency/uses-long-cache-ttl.js'; +import CacheHeaders from 'lighthouse/core/audits/byte-efficiency/uses-long-cache-ttl.js'; // @ts-ignore import {parse as parseCacheControl} from '@tusbar/cache-control'; diff --git a/lighthouse-plugin-publisher-ads/utils/resource-classification.js b/lighthouse-plugin-publisher-ads/utils/resource-classification.js index 4f7d2b56..bdd1b5f7 100644 --- a/lighthouse-plugin-publisher-ads/utils/resource-classification.js +++ b/lighthouse-plugin-publisher-ads/utils/resource-classification.js @@ -13,7 +13,7 @@ // limitations under the License. import bidderPatterns from './bidder-patterns.js'; -import thirdPartyWeb from 'lighthouse/lighthouse-core/lib/third-party-web.js'; +import thirdPartyWeb from 'lighthouse/core/lib/third-party-web.js'; import {isCacheable} from '../utils/network.js'; /** diff --git a/package.json b/package.json index 00ddf757..2939a087 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "dependencies": { "@tusbar/cache-control": "^0.3.1", "@types/esprima": "^4.0.2", - "lighthouse": "9.5.0-dev.20220728", + "lighthouse": "9.5.0-dev.20220801", "lodash.clonedeep": "^4.5.0", "yargs": "16.1.1" }, diff --git a/yarn.lock b/yarn.lock index 0b0a45d9..917789d4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2510,10 +2510,10 @@ lighthouse@7.3.0: yargs "^16.1.1" yargs-parser "^20.2.4" -lighthouse@9.5.0-dev.20220728: - version "9.5.0-dev.20220728" - resolved "https://registry.yarnpkg.com/lighthouse/-/lighthouse-9.5.0-dev.20220728.tgz#c804147020ab9b067f5ae4959617d5d5b2e35777" - integrity sha512-3n+fF/8CJ1D1VGaIsQqPGCFQb+RZQmphMOoD8lDtGXDk95hvr0HWcCCpLlxKqxr7uCASrySM1w5ZvfNw7FeT1g== +lighthouse@9.5.0-dev.20220801: + version "9.5.0-dev.20220801" + resolved "https://registry.yarnpkg.com/lighthouse/-/lighthouse-9.5.0-dev.20220801.tgz#5290e1060d26956bfaa5f076ff7101a9e0748a16" + integrity sha512-8D1Fdco/2YE003PHGkZXv5pMYAKgOPeWHkaLus4XmyH3L55T/YTp9y8SKTaAWo6aqeNSq8CIk042NPRsYarASw== dependencies: "@sentry/node" "^6.17.4" axe-core "4.4.1"