refactor(opencode): replace Bun shell in core flows (#16286)
This commit is contained in:
parent
831eb6881b
commit
2f2856e20a
18 changed files with 681 additions and 364 deletions
10
packages/util/src/module.ts
Normal file
10
packages/util/src/module.ts
Normal 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 {}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue