Rocky_Mountain_Vending/.pnpm-store/v10/files/fc/01f130e1cdb8ff208dca96a84429f3f6568afda3444673d947d5e85bf64bfac23d3c885d406de6c698d202367d9d5cf4cbb6b44d160e627467cf2b80e78ebc
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

46 lines
No EOL
1.5 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "backgroundLogCompilationEvents", {
enumerable: true,
get: function() {
return backgroundLogCompilationEvents;
}
});
const _interop_require_wildcard = require("@swc/helpers/_/_interop_require_wildcard");
const _log = /*#__PURE__*/ _interop_require_wildcard._(require("../../../build/output/log"));
function backgroundLogCompilationEvents(project, { eventTypes, signal } = {}) {
;
(async function() {
for await (const event of project.compilationEventsSubscribe(eventTypes)){
if (signal?.aborted) {
return;
}
switch(event.severity){
case 'EVENT':
_log.event(event.message);
break;
case 'TRACE':
_log.trace(event.message);
break;
case 'INFO':
_log.info(event.message);
break;
case 'WARNING':
_log.warn(event.message);
break;
case 'ERROR':
_log.error(event.message);
break;
case 'FATAL':
_log.error(event.message);
break;
default:
break;
}
}
})();
}
//# sourceMappingURL=compilation-events.js.map