Skip to content

Commit d1f4bef

Browse files
guybedfordtargos
authored andcommittedOct 1, 2019
module: pass full URL to loader for top-level load
PR-URL: #29736 Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
1 parent 69f2634 commit d1f4bef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎lib/internal/modules/cjs/loader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ Module.runMain = function() {
10011001
// Load the main module--the command line argument.
10021002
if (experimentalModules) {
10031003
asyncESM.loaderPromise.then((loader) => {
1004-
return loader.import(pathToFileURL(process.argv[1]).pathname);
1004+
return loader.import(pathToFileURL(process.argv[1]).href);
10051005
})
10061006
.catch((e) => {
10071007
internalBinding('errors').triggerUncaughtException(

‎test/fixtures/es-module-loaders/example-loader.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ export function resolve(specifier, parentModuleURL = baseURL /*, defaultResolve
1515
format: 'builtin'
1616
};
1717
}
18-
if (/^\.{0,2}[/]/.test(specifier) !== true && !specifier.startsWith('file:')) {
18+
if (/^\.{1,2}[/]/.test(specifier) !== true && !specifier.startsWith('file:')) {
1919
// For node_modules support:
2020
// return defaultResolve(specifier, parentModuleURL);
2121
throw new Error(
22-
`imports must begin with '/', './', or '../'; '${specifier}' does not`);
22+
`imports must be URLs or begin with './', or '../'; '${specifier}' does not`);
2323
}
2424
const resolved = new url.URL(specifier, parentModuleURL);
2525
const ext = path.extname(resolved.pathname);

0 commit comments

Comments
 (0)