Rocky_Mountain_Vending/.pnpm-store/v10/files/a5/659ff5049e6da486de75a0800cc94bed803420ab8333ba8c71ec015dc8b64a14a06b1e4f6464ee6902fffb747d336ff501a162b53cb6c729e0f6f96548371f
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

1 line
No EOL
1.4 KiB
Text

{"version":3,"sources":["../../../src/build/turborepo-access-trace/types.ts"],"sourcesContent":["/**\n * A single Addr / Port pair that was accessed during the duration of the trace\n */\nexport interface Address {\n addr: string\n port: string\n}\n\n/**\n * Tracked environment variable keys that were accessed during the duration of the trace\n */\nexport type EnvVars = Set<string | Symbol>\n\n/**\n * Tracks the file system paths that were accessed during the duration of the trace\n */\nexport type FS = Set<string>\n\n/**\n * Tracked Addr / Port pairs that were accessed during the duration of the trace\n */\nexport type Addresses = Array<Address>\n\n/**\n * The serializable version of `TurborepoAccessTraceResult` - this is required to pass the `TurborepoAccessTraceResult`\n * between workers where Sets are not serializable.\n */\nexport type SerializableTurborepoAccessTraceResult = Readonly<{\n fs: Array<string>\n addresses: Addresses\n envVars: Array<string>\n}>\n\n/**\n * The public version of `TurborepoAccessTraceResult` - this is what is written to the trace file\n */\nexport type PublicTurborepoAccessTraceResult = Readonly<{\n filePaths: Array<string>\n network: boolean\n envVarKeys: Array<string>\n}>\n\n/**\n * A function that restores the original state of a proxy\n */\nexport type RestoreOriginalFunction = () => void\n"],"names":[],"mappings":"AAAA;;CAEC","ignoreList":[0]}