Rocky_Mountain_Vending/.pnpm-store/v10/files/66/f8567ebf0c378fd3084386a7c813ae4d4c75416f1f5ff49bf9a6be5e20e3fcece929e60ac6d08800a2bee49fd44dc0a9b1a804a921ef357eb8a8bd045c1141
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
230 B
Text

import { foo } from '../fixtures/reexport.js'
import Hook from '../../index.js'
import { strictEqual } from 'assert'
Hook((exports, name) => {
if (name.match(/reexport.js/)) {
exports.foo += 15
}
})
strictEqual(foo, 57)