Rocky_Mountain_Vending/.pnpm-store/v10/files/07/65e3430a6813b32aeed5e7d2527da9e2ed996f77bab1512c366e38d665c81bc33ec1e7f56092c127f0e16bed93c65b713268d91caf19f239ce380c8deab587
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

17 lines
477 B
Text

import Hook from '../../index.js'
import { foo } from '../fixtures/re-export-star-external.mjs'
import { bar } from '../fixtures/sub-directory/re-export-star-external.mjs'
import { strictEqual } from 'assert'
Hook((exports, name) => {
if (name.endsWith('fixtures/re-export-star-external.mjs')) {
exports.foo = '1'
}
if (name.endsWith('fixtures/sub-directory/re-export-star-external.mjs')) {
exports.bar = '2'
}
})
strictEqual(foo, '1')
strictEqual(bar, '2')