Rocky_Mountain_Vending/.pnpm-store/v10/files/df/ab932b9ae1c1f47a00ade7d53e6fe2f6065f77ac694943f30f14421e297ae30034958774f1eda250f9a20f4cb11f80d3dc32232b7ca506c3d80de27fcaf9b5
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

16 lines
342 B
Text

import { register } from 'module'
import Hook from '../../index.js'
import { strictEqual } from 'assert'
register('../../hook.mjs', import.meta.url, { data: { include: ['openai'] } })
const hooked = []
Hook((exports, name) => {
hooked.push(name)
})
await import('openai')
strictEqual(hooked.length, 1)
strictEqual(hooked[0], 'openai')