Files
bare-operating-system/build/stubs/undici.cjs
T
Raven Scott 2b7025b22d
Release rolling / release (push) Failing after 1m32s
Bare standalone packaging — scripts/bare-standalone.cjs, make.cjs, hosts.cjs, prepare-pack.mjs (kernel sync, node_modules flatten, optional sshcrypto.node omit)
Entries + OTA — bin/bare-os-*.mjs + lib/bare-os-ota.mjs (pear-runtime, --no-updates / BARE_OS_OTA_DISABLE)
Upgrade links on seeder/booter package.json
Gitea rolling — .gitea/workflows/release-rolling.yml + scripts/gitea-rolling-release.sh (RELEASE_TOKEN)
by-arch + pear-ci — scripts/pear-stage-by-arch.sh, ci/snapshot-*.json (PEAR_PRIMARY_KEY)
pear run retired from npm/PM2/docs; see docs/BINARY-RELEASE.md
2026-07-31 11:44:04 -04:00

11 lines
262 B
JavaScript

'use strict'
/** Stub: Node-only undici is not shipped in Bare standalone builds. */
module.exports = {
Agent: class Agent {
constructor() {
throw new Error('undici is not available in Bare standalone builds')
}
},
fetch: globalThis.fetch,
}