@@ -470,7 +470,7 @@ ObjectDefineProperty(Module, '_readPackage', {
470
470
* @param {string } originalPath The specifier passed to `require`
471
471
*/
472
472
function tryPackage ( requestPath , exts , isMain , originalPath ) {
473
- const pkg = _readPackage ( requestPath ) . main ;
473
+ const { main : pkg , pjsonPath } = _readPackage ( requestPath ) ;
474
474
475
475
if ( ! pkg ) {
476
476
return tryExtensions ( path . resolve ( requestPath , 'index' ) , exts , isMain ) ;
@@ -489,14 +489,13 @@ function tryPackage(requestPath, exts, isMain, originalPath) {
489
489
'Please verify that the package.json has a valid "main" entry' ,
490
490
) ;
491
491
err . code = 'MODULE_NOT_FOUND' ;
492
- err . path = path . resolve ( requestPath , 'package.json' ) ;
492
+ err . path = pjsonPath ;
493
493
err . requestPath = originalPath ;
494
494
// TODO(BridgeAR): Add the requireStack as well.
495
495
throw err ;
496
496
} else {
497
- const jsonPath = path . resolve ( requestPath , 'package.json' ) ;
498
497
process . emitWarning (
499
- `Invalid 'main' field in '${ jsonPath } ' of '${ pkg } '. ` +
498
+ `Invalid 'main' field in '${ pjsonPath } ' of '${ pkg } '. ` +
500
499
'Please either fix that or report it to the module author' ,
501
500
'DeprecationWarning' ,
502
501
'DEP0128' ,
@@ -582,28 +581,28 @@ function trySelfParentPath(parent) {
582
581
function trySelf ( parentPath , request ) {
583
582
if ( ! parentPath ) { return false ; }
584
583
585
- const { data : pkg , path : pkgPath } = packageJsonReader . readPackageScope ( parentPath ) ;
586
- if ( ! pkg || pkg . exports == null || pkg . name === undefined ) {
584
+ const pkg = packageJsonReader . getNearestParentPackageJSON ( parentPath ) ;
585
+ if ( pkg ?. data . exports === undefined || pkg . data . name === undefined ) {
587
586
return false ;
588
587
}
589
588
590
589
let expansion ;
591
- if ( request === pkg . name ) {
590
+ if ( request === pkg . data . name ) {
592
591
expansion = '.' ;
593
- } else if ( StringPrototypeStartsWith ( request , `${ pkg . name } /` ) ) {
594
- expansion = '.' + StringPrototypeSlice ( request , pkg . name . length ) ;
592
+ } else if ( StringPrototypeStartsWith ( request , `${ pkg . data . name } /` ) ) {
593
+ expansion = '.' + StringPrototypeSlice ( request , pkg . data . name . length ) ;
595
594
} else {
596
595
return false ;
597
596
}
598
597
599
598
try {
600
599
const { packageExportsResolve } = require ( 'internal/modules/esm/resolve' ) ;
601
600
return finalizeEsmResolution ( packageExportsResolve (
602
- pathToFileURL ( pkgPath + '/package.json' ) , expansion , pkg ,
603
- pathToFileURL ( parentPath ) , getCjsConditions ( ) ) , parentPath , pkgPath ) ;
601
+ pathToFileURL ( pkg . path + '/package.json' ) , expansion , pkg . data ,
602
+ pathToFileURL ( parentPath ) , getCjsConditions ( ) ) , parentPath , pkg . path ) ;
604
603
} catch ( e ) {
605
604
if ( e . code === 'ERR_MODULE_NOT_FOUND' ) {
606
- throw createEsmNotFoundErr ( request , pkgPath + '/package.json' ) ;
605
+ throw createEsmNotFoundErr ( request , pkg . path + '/package.json' ) ;
607
606
}
608
607
throw e ;
609
608
}
@@ -1180,7 +1179,7 @@ Module._resolveFilename = function(request, parent, isMain, options) {
1180
1179
1181
1180
if ( request [ 0 ] === '#' && ( parent ?. filename || parent ?. id === '<repl>' ) ) {
1182
1181
const parentPath = parent ?. filename ?? process . cwd ( ) + path . sep ;
1183
- const pkg = packageJsonReader . readPackageScope ( parentPath ) || { __proto__ : null } ;
1182
+ const pkg = packageJsonReader . getNearestParentPackageJSON ( parentPath ) || { __proto__ : null } ;
1184
1183
if ( pkg . data ?. imports != null ) {
1185
1184
try {
1186
1185
const { packageImportsResolve } = require ( 'internal/modules/esm/resolve' ) ;
@@ -1504,9 +1503,9 @@ Module._extensions['.js'] = function(module, filename) {
1504
1503
const content = getMaybeCachedSource ( module , filename ) ;
1505
1504
1506
1505
if ( StringPrototypeEndsWith ( filename , '.js' ) ) {
1507
- const pkg = packageJsonReader . readPackageScope ( filename ) || { __proto__ : null } ;
1506
+ const pkg = packageJsonReader . getNearestParentPackageJSON ( filename ) ;
1508
1507
// Function require shouldn't be used in ES modules.
1509
- if ( pkg . data ? .type === 'module' ) {
1508
+ if ( pkg ? .data . type === 'module' ) {
1510
1509
if ( getOptionValue ( '--experimental-require-module' ) ) {
1511
1510
module . _compile ( content , filename , true ) ;
1512
1511
return ;
0 commit comments