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

70 lines
No EOL
2.4 KiB
Text

import path from 'path';
import { Worker } from '../../lib/worker';
import { NextBuildContext } from '../build-context';
async function turbopackBuildWithWorker() {
try {
const worker = new Worker(path.join(__dirname, 'impl.js'), {
exposedMethods: [
'workerMain',
'waitForShutdown'
],
enableWorkerThreads: true,
debuggerPortOffset: -1,
isolatedMemory: false,
numWorkers: 1,
maxRetries: 0,
forkOptions: {
env: {
NEXT_PRIVATE_BUILD_WORKER: '1'
}
}
});
const { nextBuildSpan, // Config is not serializable and is loaded in the worker.
config: _config, ...prunedBuildContext } = NextBuildContext;
const { buildTraceContext, duration } = await worker.workerMain({
buildContext: prunedBuildContext
});
return {
// destroy worker when Turbopack has shutdown so it's not sticking around using memory
// We need to wait for shutdown to make sure filesystem cache is flushed
shutdownPromise: worker.waitForShutdown().then(()=>{
worker.end();
}),
buildTraceContext,
duration
};
} catch (err) {
// When the error is a serialized `Error` object we need to recreate the `Error` instance
// in order to keep the consistent error reporting behavior.
if (err.type === 'Error') {
const error = Object.defineProperty(new Error(err.message), "__NEXT_ERROR_CODE", {
value: "E394",
enumerable: false,
configurable: true
});
if (err.name) {
error.name = err.name;
}
if (err.cause) {
error.cause = err.cause;
}
error.message = err.message;
error.stack = err.stack;
throw error;
}
throw err;
}
}
export function turbopackBuild(withWorker) {
const nextBuildSpan = NextBuildContext.nextBuildSpan;
return nextBuildSpan.traceChild('run-turbopack').traceAsyncFn(async ()=>{
if (withWorker) {
return await turbopackBuildWithWorker();
} else {
const build = require('./impl').turbopackBuild;
return await build();
}
});
}
//# sourceMappingURL=index.js.map