/opt/canhelp/node_modules/next/dist/esm/shared/lib/turbopack
NameSizeModeActions
compilation-events.js14040644editdlrm
compilation-events.js.map21430644editdlrm
entry-key.js4620644editdlrm
entry-key.js.map12910644editdlrm
internal-error.js17110644editdlrm
internal-error.js.map27430644editdlrm
manifest-loader.js230330644editdlrm
manifest-loader.js.map438840644editdlrm
utils.js101410644editdlrm
utils.js.map173790644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/esm/shared/lib/turbopack/compilation-events.js (1404B)
import * as Log from '../../../build/output/log'; /** * Subscribes to compilation events for `project` and prints them using the * `Log` library. * * The `signal` argument is partially implemented. The abort may not happen until the next * compilation event arrives. */ export function backgroundLogCompilationEvents(project, param) { let { eventTypes, signal } = param === void 0 ? {} : param; ; (async function() { for await (const event of project.compilationEventsSubscribe(eventTypes)){ if (signal == null ? void 0 : 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