Rocky_Mountain_Vending/.pnpm-store/v10/files/88/f7d9d476c983e454ced84d7130a57f3ecb1e8f24c722b9579fd32444e85a92dccc11ee04d3482ee9d9c14600dd7eef008fcecd340ec15928efb4b1f98cb41e
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

44 lines
No EOL
1.3 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "default", {
enumerable: true,
get: function() {
return uploadTrace;
}
});
const _shared = require("./shared");
const _storage = require("../telemetry/storage");
function uploadTrace({ traceUploadUrl, mode, projectDir, distDir, isTurboSession, sync }) {
const { NEXT_TRACE_UPLOAD_DEBUG } = process.env;
const telemetry = new _storage.Telemetry({
distDir
});
// Note: cross-spawn is not used here as it causes
// a new command window to appear when we don't want it to
const child_process = require('child_process');
// we use spawnSync when debugging to ensure logs are piped
// correctly to stdout/stderr
const spawn = NEXT_TRACE_UPLOAD_DEBUG || sync ? child_process.spawnSync : child_process.spawn;
spawn(process.execPath, [
require.resolve('./trace-uploader'),
traceUploadUrl,
mode,
projectDir,
distDir,
String(isTurboSession),
_shared.traceId,
telemetry.anonymousId,
telemetry.sessionId
], {
detached: !NEXT_TRACE_UPLOAD_DEBUG,
windowsHide: true,
shell: false,
...NEXT_TRACE_UPLOAD_DEBUG ? {
stdio: 'inherit'
} : {}
});
}
//# sourceMappingURL=upload-trace.js.map