@@ -82,7 +82,6 @@ const {
82
82
pendingDeprecate,
83
83
emitExperimentalWarning,
84
84
kEmptyObject,
85
- filterOwnProperties,
86
85
setOwnProperty,
87
86
getLazy,
88
87
} = require ( 'internal/util' ) ;
@@ -353,36 +352,10 @@ function initializeCJS() {
353
352
// -> a.<ext>
354
353
// -> a/index.<ext>
355
354
356
- const packageJsonCache = new SafeMap ( ) ;
357
-
358
355
function readPackage ( requestPath ) {
359
356
const jsonPath = path . resolve ( requestPath , 'package.json' ) ;
360
-
361
- const existing = packageJsonCache . get ( jsonPath ) ;
362
- if ( existing !== undefined ) return existing ;
363
-
364
- const result = packageJsonReader . read ( jsonPath ) ;
365
- const json = result . containsKeys === false ? '{}' : result . string ;
366
- if ( json === undefined ) {
367
- packageJsonCache . set ( jsonPath , false ) ;
368
- return false ;
369
- }
370
-
371
- try {
372
- const filtered = filterOwnProperties ( JSONParse ( json ) , [
373
- 'name' ,
374
- 'main' ,
375
- 'exports' ,
376
- 'imports' ,
377
- 'type' ,
378
- ] ) ;
379
- packageJsonCache . set ( jsonPath , filtered ) ;
380
- return filtered ;
381
- } catch ( e ) {
382
- e . path = jsonPath ;
383
- e . message = 'Error parsing ' + jsonPath + ': ' + e . message ;
384
- throw e ;
385
- }
357
+ // Return undefined or the filtered package.json as a JS object
358
+ return packageJsonReader . read ( jsonPath ) ;
386
359
}
387
360
388
361
let _readPackage = readPackage ;
@@ -412,7 +385,7 @@ function readPackageScope(checkPath) {
412
385
if ( StringPrototypeEndsWith ( checkPath , sep + 'node_modules' ) )
413
386
return false ;
414
387
const pjson = _readPackage ( checkPath + sep ) ;
415
- if ( pjson ) return {
388
+ if ( pjson . exists ) return {
416
389
data : pjson ,
417
390
path : checkPath ,
418
391
} ;
@@ -421,13 +394,13 @@ function readPackageScope(checkPath) {
421
394
}
422
395
423
396
function tryPackage ( requestPath , exts , isMain , originalPath ) {
424
- const pkg = _readPackage ( requestPath ) ?. main ;
397
+ const pkg = _readPackage ( requestPath ) ;
425
398
426
- if ( ! pkg ) {
399
+ if ( ! pkg . main ) {
427
400
return tryExtensions ( path . resolve ( requestPath , 'index' ) , exts , isMain ) ;
428
401
}
429
402
430
- const filename = path . resolve ( requestPath , pkg ) ;
403
+ const filename = path . resolve ( requestPath , pkg . main ) ;
431
404
let actual = tryFile ( filename , isMain ) ||
432
405
tryExtensions ( filename , exts , isMain ) ||
433
406
tryExtensions ( path . resolve ( filename , 'index' ) , exts , isMain ) ;
@@ -447,7 +420,7 @@ function tryPackage(requestPath, exts, isMain, originalPath) {
447
420
} else {
448
421
const jsonPath = path . resolve ( requestPath , 'package.json' ) ;
449
422
process . emitWarning (
450
- `Invalid 'main' field in '${ jsonPath } ' of '${ pkg } '. ` +
423
+ `Invalid 'main' field in '${ jsonPath } ' of '${ pkg . main } '. ` +
451
424
'Please either fix that or report it to the module author' ,
452
425
'DeprecationWarning' ,
453
426
'DEP0128' ,
@@ -527,8 +500,9 @@ function trySelf(parentPath, request) {
527
500
if ( ! parentPath ) return false ;
528
501
529
502
const { data : pkg , path : pkgPath } = readPackageScope ( parentPath ) || { } ;
530
- if ( ! pkg || pkg . exports === undefined ) return false ;
531
- if ( typeof pkg . name !== 'string' ) return false ;
503
+ if ( ! pkg || pkg . exports === undefined || pkg . name === undefined ) {
504
+ return false ;
505
+ }
532
506
533
507
let expansion ;
534
508
if ( request === pkg . name ) {
@@ -563,7 +537,7 @@ function resolveExports(nmPath, request) {
563
537
return ;
564
538
const pkgPath = path . resolve ( nmPath , name ) ;
565
539
const pkg = _readPackage ( pkgPath ) ;
566
- if ( pkg ? .exports != null ) {
540
+ if ( pkg . exists && pkg . exports != null ) {
567
541
try {
568
542
const { packageExportsResolve } = require ( 'internal/modules/esm/resolve' ) ;
569
543
return finalizeEsmResolution ( packageExportsResolve (
0 commit comments