Rocky_Mountain_Vending/.pnpm-store/v10/files/dc/9ad8bc6c7059cba2832ab84254c54352ce795045f75cd58ffe440b9c46b7adccba582a7f621a9310d639e5967daf40ae70eaae824ba3b99f972314faae0a6d
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

19 lines
577 B
Text

import * as lib from '../fixtures/duplicate.mjs'
import { notEqual, strictEqual } from 'assert'
import Hook from '../../index.js'
Hook((exports, name) => {
if (name.match(/duplicate\.mjs/)) {
// foo should not be exported because there are duplicate * exports
strictEqual('foo' in exports, false)
// default should be exported
strictEqual(exports.default, 'foo')
}
})
notEqual(lib, undefined)
// foo should not be exported because there are duplicate exports
strictEqual('foo' in lib, false)
// default should be exported
strictEqual(lib.default, 'foo')