mirror of https://github.com/node-red/node-red.git
fix: registry
Use parsedModule.module for modulePath Signed-off-by: inglkruiz <12603425+inglkruiz@users.noreply.github.com>pull/3984/head
parent
113d42ef35
commit
04b36e7374
packages/node_modules/@node-red/registry/lib
|
@ -144,7 +144,7 @@ function importModule(module) {
|
|||
// specific file that is loaded when the module is required/imported
|
||||
// As this won't be on the natural module search path, we use createRequire
|
||||
// to access the module
|
||||
const modulePath = createRequire(moduleDir).resolve(module)
|
||||
const modulePath = createRequire(moduleDir).resolve(parsedModule.module)
|
||||
// Import needs the full path to the module's main .js file
|
||||
// It also needs to be a file:// url for Windows
|
||||
const moduleUrl = url.pathToFileURL(modulePath);
|
||||
|
|
Loading…
Reference in New Issue