Files
bare-operating-system/build/stubs/pear-runtime.cjs
T
Raven Scott 302c968bef
Release rolling / release (push) Successful in 6m48s
Update booter
2026-07-31 13:00:45 -04:00

27 lines
515 B
JavaScript

/**
* Standalone pack stub: pear-runtime (and its native graph) is not embedded by
* default — host updates use Gitea rolling tarballs. Rebuild with --with-ota to
* pack the real module.
*/
class PearRuntimeStub {
static isStub = true
constructor() {
this.updater = null
}
on() {
return this
}
async ready() {
throw new Error(
'pear-runtime not packed into this standalone binary (host OTA via Gitea rolling)'
)
}
async close() {}
}
module.exports = PearRuntimeStub