refactor(opencode): replace Bun shell in core flows (#16286)

This commit is contained in:
Dax 2026-03-09 15:19:50 -04:00 committed by GitHub
commit 2f2856e20a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 681 additions and 364 deletions

View file

@ -0,0 +1,10 @@
import { createRequire } from "node:module"
import path from "node:path"
export namespace Module {
export function resolve(id: string, dir: string) {
try {
return createRequire(path.join(dir, "package.json")).resolve(id)
} catch {}
}
}