8 lines
376 B
JavaScript
8 lines
376 B
JavaScript
// Bare entrypoint. Keep compatibility globals in this process, then load the
|
|
// daemon only after the mapping has been installed. This keeps Node out of the
|
|
// installed runtime while allowing the copied CommonJS harness to keep its
|
|
// upstream package shape.
|
|
await import('bare-node-runtime/global');
|
|
const { startDaemon } = await import('./index.js');
|
|
await startDaemon();
|