Rocky_Mountain_Vending/.pnpm-store/v10/files/35/ee2c4abdff29aa839bfcacf1aac518d3e9f58e0e6121c8986a3cd1677b3ab62f81209bb3dae6690795efa0c2c905e18d04a91b25ffe72de333bd5b837d838d
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

12 lines
302 B
Text

import Hook from '../../index.js'
import { foo } from '../fixtures/require-root.js'
import { strictEqual } from 'assert'
Hook((exports, name) => {
if (name.endsWith('require-root.js')) {
strictEqual(exports.foo, 'something')
exports.foo += '-wrap'
}
})
strictEqual(foo, 'something-wrap')