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>
18 lines
523 B
Text
18 lines
523 B
Text
import { register } from 'module'
|
|
import { Hook, createAddHookMessageChannel } from '../../index.js'
|
|
import { dirname, join } from 'path'
|
|
import { fileURLToPath } from 'url'
|
|
|
|
const fooPath = join(dirname(fileURLToPath(import.meta.url)), 'foo.mjs')
|
|
|
|
const { registerOptions, waitForAllMessagesAcknowledged } = createAddHookMessageChannel()
|
|
|
|
register('../../hook.mjs', import.meta.url, registerOptions)
|
|
|
|
global.hooked = []
|
|
|
|
Hook([fooPath], (_, name) => {
|
|
global.hooked.push(name)
|
|
})
|
|
|
|
await waitForAllMessagesAcknowledged()
|