17 lines
531 B
JavaScript
17 lines
531 B
JavaScript
/**
|
|
* Pack graph anchor for QVAC.
|
|
* Static import so bare-pack embeds the bind module + @qvac/sdk (dynamic
|
|
* import() alone was not present in app.bundle at runtime).
|
|
*
|
|
* Loaded from pack-imports / host only; SDK JS evaluates when this module loads.
|
|
* When packing with --skip-qvac, `@qvac/sdk` is remapped to stubs.
|
|
*/
|
|
import * as qvacSdkBind from './bare-os-qvac-sdk-bind.mjs'
|
|
|
|
export { qvacSdkBind }
|
|
|
|
/** @deprecated kept for pack-imports reference */
|
|
export function bareOsQvacEnsurePackGraph() {
|
|
return qvacSdkBind
|
|
}
|