Release rolling / release (push) Failing after 1m32s
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
11 lines
262 B
JavaScript
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,
|
|
}
|