Files
gnome-jarvis/daemon/bare-entry.js
T
snxraven a3314db1e9
Rolling release / release (push) Canceled after 14m9s
CI / verify (push) Canceled after 14m18s
Run daemon on packaged Bare runtime
2026-09-11 15:52:53 -04:00

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();