Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/f0100e10b0184963bbd6436f6646bba44d1ac23dea87e0bff3432b0061466b3f4db572ca7a8510f77ed31bac911a81825ca3d4093aec7a68ff222d6cc895a1
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

13 lines
377 B
Text

import * as lib from '../fixtures/duplicate-explicit.mjs'
import { strictEqual } from 'assert'
import Hook from '../../index.js'
Hook((exports, name) => {
if (name.endsWith('duplicate-explicit.mjs')) {
strictEqual(exports.foo, 'c')
exports.foo += '-wrapped'
}
})
// foo should not be exported because there are duplicate exports
strictEqual(lib.foo, 'c-wrapped')