Rocky_Mountain_Vending/.pnpm-store/v10/files/cd/87d1dbc98783607337891ef6e3fefe26c53b1c579d3c4d8fedfd4b89e2568298690a7b20fa7c2c98d718a281b31e6432c08571ad5dfd3a6b9be7aaa8bda598
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
240 B
Text

'use strict'
const debug = (
typeof process === 'object' &&
process.env &&
process.env.NODE_DEBUG &&
/\bsemver\b/i.test(process.env.NODE_DEBUG)
) ? (...args) => console.error('SEMVER', ...args)
: () => {}
module.exports = debug