Rocky_Mountain_Vending/.pnpm-store/v10/files/d0/801c602fe8736514fea71c2e86c0d2ebb55eeb2b51d721e93156a6daee3f9c6649868e75f810c3e0a589a1affde3057e51e61d2484428a15aea4dbdc76b6fa
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

26 lines
654 B
Text

import { strictEqual } from 'assert'
import Hook from '../../index.js'
Hook((exports, name) => {
if (/got-alike\.mjs/.test(name) === false) return
const foo = exports.foo
exports.foo = foo + '-wrapped'
const renamedDefaultExport = exports.renamedDefaultExport
exports.renamedDefaultExport = function bazWrapped () {
return renamedDefaultExport() + '-wrapped'
}
})
/* eslint-disable import/no-named-default */
import {
default as Got,
foo,
renamedDefaultExport
} from '../fixtures/got-alike.mjs'
strictEqual(foo, '42-wrapped')
const got = new Got()
strictEqual(got.foo, 'foo')
strictEqual(renamedDefaultExport(), 'baz-wrapped')