mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
fix: registry
Use parsedModule.module for modulePath Signed-off-by: inglkruiz <12603425+inglkruiz@users.noreply.github.com>
This commit is contained in:
parent
113d42ef35
commit
04b36e7374
@ -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
Block a user