21 lines
847 B
JavaScript
21 lines
847 B
JavaScript
/**
|
|
* Side-effect / pack anchor: pull host ctx.bare modules into the standalone graph.
|
|
* Implementation lives in bare-os-ctx-bare-host-modules.mjs (also imported by ctx-bare).
|
|
*
|
|
* QVAC: static import of pack-anchor → sdk-bind → @qvac/sdk so bare-pack embeds
|
|
* the graph (dynamic import alone was missing from app.bundle at runtime).
|
|
*
|
|
* Discord WS bootstrap MUST be first so @discordjs/ws binds to WHATWG bare-ws.
|
|
*/
|
|
import './bare-os-discord-ws-bootstrap.mjs'
|
|
import './bare-os-discord-commands-guest.js'
|
|
import './bare-os-ctx-bare-host-modules.mjs'
|
|
import { bareDiscordJs as bareOsPackedDiscordJs } from './bare-os-ctx-discord-packed.js'
|
|
import './bare-os-qvac-pack-anchor.mjs'
|
|
// Ensure GPU probe → bare-subprocess edge is in the standalone pack graph.
|
|
import './bare-os-qvac-gpu-probe.mjs'
|
|
|
|
void bareOsPackedDiscordJs
|
|
|
|
export {}
|