Rocky_Mountain_Vending/.pnpm-store/v10/files/db/f631f6d35ec1d074a0b12a2e8df9092eefdba0bdb0d17517dfaf8d0c831dfb4e1472522410d7dd0c010de69e506452271ae54b35ec539f1cc25d6f0f07c950
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

11 lines
306 B
Text

/* global Bare */
// This export SHOULD NOT be shortened in any way as having the full
// `module.exports = require(...)` statement is crucial for synthesizing
// ESM exports.
if (Bare.platform === 'win32') {
module.exports = require('./lib/win32')
} else {
module.exports = require('./lib/posix')
}