mirror of
https://github.com/actions/github-script.git
synced 2026-04-07 14:49:25 +00:00
Call resolve, then require
This commit is contained in:
parent
7e8659dcd4
commit
7e12bd7395
2 changed files with 15 additions and 6 deletions
|
|
@ -10,9 +10,14 @@ export const wrapRequire = new Proxy(__non_webpack_require__, {
|
|||
try {
|
||||
return target.apply(thisArg, [moduleID])
|
||||
} catch (err) {
|
||||
return target.resolve(moduleID, {
|
||||
paths: eval('module').paths.concat(process.cwd())
|
||||
})
|
||||
const modulePath = target.resolve.apply(thisArg, [
|
||||
moduleID,
|
||||
{
|
||||
paths: eval('module').paths.concat(process.cwd())
|
||||
}
|
||||
])
|
||||
|
||||
return target.apply(thisArg, [modulePath])
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue