Rocky_Mountain_Vending/.pnpm-store/v10/files/03/491377f17b5e5fc9a7735027d023258934adc8faeaab17b27b5dd9f1d4d640e9359d6271a93ad27aadccc41deb226fdee8610adbd2f142babb380e44defa78
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
269 B
Text

import { foo } from '../fixtures/nested-folder/specifier.js'
import Hook from '../../index.js'
import { strictEqual } from 'assert'
Hook((exports, name) => {
if (name.endsWith('fixtures/nested-folder/specifier.js')) {
exports.foo = 1
}
})
strictEqual(foo, 1)