Rocky_Mountain_Vending/.pnpm-store/v10/files/1c/64cd8a19452aeff21df78000e3441ed8351ebdfc39ff4ca7a36e67b0f5e09b8fd6d8f02c652783feac580ae000aeeca24a4eb6698278c047466b89d2f3ede7
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

18 lines
No EOL
766 B
Text

export function updateTelemetryLoaderCtxFromTransformOutput(ctx, output) {
if (output.eliminatedPackages && ctx.eliminatedPackages) {
for (const pkg of JSON.parse(output.eliminatedPackages)){
ctx.eliminatedPackages.add(pkg);
}
}
if (output.useCacheTelemetryTracker && ctx.useCacheTracker) {
for (const [key, value] of JSON.parse(output.useCacheTelemetryTracker)){
const prefixedKey = `useCache/${key}`;
const numericValue = Number(value);
if (!isNaN(numericValue)) {
ctx.useCacheTracker.set(prefixedKey, (ctx.useCacheTracker.get(prefixedKey) || 0) + numericValue);
}
}
}
}
//# sourceMappingURL=update-telemetry-loader-context-from-swc.js.map