Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/0819e5bb9c10c5f488ea622b7eaf85316e9ea16859546fcdf15f49d51234d2be0e21cf88c47aa47a62e454e9549249f96c03fa3774a94280983c3103edea63
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

32 lines
833 B
Text

import {
asyncWrapProviders,
createHook,
executionAsyncId,
executionAsyncResource,
triggerAsyncId
} from "unenv/node/async_hooks";
export {
asyncWrapProviders,
createHook,
executionAsyncId,
executionAsyncResource,
triggerAsyncId
} from "unenv/node/async_hooks";
const workerdAsyncHooks = process.getBuiltinModule("node:async_hooks");
export const { AsyncLocalStorage, AsyncResource } = workerdAsyncHooks;
export default {
/**
* manually unroll unenv-polyfilled-symbols to make it tree-shakeable
*/
// @ts-expect-error @types/node is missing this one - this is a bug in typings
asyncWrapProviders,
createHook,
executionAsyncId,
executionAsyncResource,
triggerAsyncId,
/**
* manually unroll workerd-polyfilled-symbols to make it tree-shakeable
*/
AsyncLocalStorage,
AsyncResource
};