This commit is contained in:
2026-08-18 18:11:34 -04:00
parent bbaf47028f
commit 05dab1f18a
263 changed files with 895 additions and 872 deletions
@@ -9,8 +9,8 @@ const AsyncFunction = Object.getPrototypeOf(async function () {}).constructor
async function loadPearBin() {
const runtime = await readFile(path.join(__dirname, '../lib/runtime.js'), 'utf8')
const stage = await readFile(path.join(__dirname, '../lib/pear-stage.js'), 'utf8')
const release = await readFile(path.join(__dirname, '../lib/pear-release.js'), 'utf8')
const stage = await readFile(path.join(__dirname, '../lib/pear/pear-stage.js'), 'utf8')
const release = await readFile(path.join(__dirname, '../lib/pear/pear-release.js'), 'utf8')
const body = await readFile(path.join(__dirname, '../src/pear.js'), 'utf8')
return new AsyncFunction(
'ctx',