mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
module: also enable subpath imports in REPL
PR-URL: https://github.com/nodejs/node/pull/43450 Fixes: https://github.com/nodejs/node/issues/43410 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
e0705be41c
commit
c15a605d8b
@ -904,20 +904,19 @@ Module._resolveFilename = function(request, parent, isMain, options) {
|
||||
paths = Module._resolveLookupPaths(request, parent);
|
||||
}
|
||||
|
||||
if (parent?.filename) {
|
||||
if (request[0] === '#') {
|
||||
const pkg = readPackageScope(parent.filename) || {};
|
||||
if (pkg.data?.imports != null) {
|
||||
try {
|
||||
return finalizeEsmResolution(
|
||||
packageImportsResolve(request, pathToFileURL(parent.filename),
|
||||
cjsConditions), parent.filename,
|
||||
pkg.path);
|
||||
} catch (e) {
|
||||
if (e.code === 'ERR_MODULE_NOT_FOUND')
|
||||
throw createEsmNotFoundErr(request);
|
||||
throw e;
|
||||
}
|
||||
if (request[0] === '#' && (parent?.filename || parent?.id === '<repl>')) {
|
||||
const parentPath = parent?.filename ?? process.cwd() + path.sep;
|
||||
const pkg = readPackageScope(parentPath) || {};
|
||||
if (pkg.data?.imports != null) {
|
||||
try {
|
||||
return finalizeEsmResolution(
|
||||
packageImportsResolve(request, pathToFileURL(parentPath),
|
||||
cjsConditions), parentPath,
|
||||
pkg.path);
|
||||
} catch (e) {
|
||||
if (e.code === 'ERR_MODULE_NOT_FOUND')
|
||||
throw createEsmNotFoundErr(request);
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
19
test/es-module/test-esm-repl-imports.js
Normal file
19
test/es-module/test-esm-repl-imports.js
Normal file
@ -0,0 +1,19 @@
|
||||
'use strict';
|
||||
const { mustCall } = require('../common');
|
||||
const assert = require('assert');
|
||||
const fixtures = require('../common/fixtures');
|
||||
const { spawn } = require('child_process');
|
||||
|
||||
const child = spawn(process.execPath, [
|
||||
'--interactive',
|
||||
], {
|
||||
cwd: fixtures.path('es-modules', 'pkgimports'),
|
||||
});
|
||||
|
||||
child.stdin.end(
|
||||
'try{require("#test");await import("#test")}catch{process.exit(-1)}'
|
||||
);
|
||||
|
||||
child.on('exit', mustCall((code) => {
|
||||
assert.strictEqual(code, 0);
|
||||
}));
|
Loading…
Reference in New Issue
Block a user