Rocky_Mountain_Vending/.pnpm-store/v10/files/c6/3a58447479fb2d155bfb36b3a4d36ad50074bf8a25d532081ef093670cdb01a4f6f1a99f81c27d3f6e2e921afe0dfd6148f886553ef77a6e567e4e393073c3
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

35 lines
875 B
Text

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview
* This gatherer remaps the result of the Trace gatherer for compatibility with legacy Lighthouse
* when devtools logs and traces were special-cased.
*/
import TraceGatherer from './trace.js';
import BaseGatherer from '../base-gatherer.js';
/** @implements {LH.Gatherer.GathererInstance<'Trace'>} */
class TraceCompat extends BaseGatherer {
/** @type {LH.Gatherer.GathererMeta<'Trace'>} */
meta = {
supportedModes: ['timespan', 'navigation'],
dependencies: {Trace: TraceGatherer.symbol},
};
/**
* @param {LH.Gatherer.Context<'Trace'>} passContext
* @return {Promise<LH.Artifacts['traces']>}
*/
async getArtifact(passContext) {
return {
defaultPass: passContext.dependencies.Trace,
};
}
}
export default TraceCompat;