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 loadAppstoreBin() {
const runtime = await readFile(path.join(__dirname, '../lib/runtime.js'), 'utf8')
const p2p = await readFile(path.join(__dirname, '../lib/p2p-suite.js'), 'utf8')
const pear = await readFile(path.join(__dirname, '../lib/appstore-pear.js'), 'utf8')
const p2p = await readFile(path.join(__dirname, '../lib/p2p/p2p-suite.js'), 'utf8')
const pear = await readFile(path.join(__dirname, '../lib/pear/appstore-pear.js'), 'utf8')
const body = await readFile(path.join(__dirname, '../src/appstore.js'), 'utf8')
return new AsyncFunction(
'ctx',