@@ -9,11 +9,11 @@ const { getOptionValue } = require('internal/options');
9
9
const preserveSymlinks = getOptionValue ( '--preserve-symlinks' ) ;
10
10
const preserveSymlinksMain = getOptionValue ( '--preserve-symlinks-main' ) ;
11
11
const experimentalJsonModules = getOptionValue ( '--experimental-json-modules' ) ;
12
+ const typeFlag = getOptionValue ( '--entry-type' ) ;
12
13
13
14
const { resolve : moduleWrapResolve ,
14
15
getPackageType } = internalBinding ( 'module_wrap' ) ;
15
16
const { pathToFileURL, fileURLToPath } = require ( 'internal/url' ) ;
16
- const asyncESM = require ( 'internal/process/esm_loader' ) ;
17
17
const { ERR_TYPE_MISMATCH ,
18
18
ERR_UNKNOWN_FILE_EXTENSION } = require ( 'internal/errors' ) . codes ;
19
19
@@ -80,26 +80,26 @@ function resolve(specifier, parentURL) {
80
80
type !== TYPE_MODULE ? legacyExtensionFormatMap : extensionFormatMap ;
81
81
let format = extMap [ ext ] ;
82
82
83
- if ( isMain && asyncESM . typeFlag ) {
84
- // Conflict between explicit extension (.mjs, .cjs) and --type
85
- if ( ext === '.cjs' && asyncESM . typeFlag === 'module' ||
86
- ext === '.mjs' && asyncESM . typeFlag === 'commonjs' ) {
83
+ if ( isMain && typeFlag ) {
84
+ // Conflict between explicit extension (.mjs, .cjs) and --entry- type
85
+ if ( ext === '.cjs' && typeFlag === 'module' ||
86
+ ext === '.mjs' && typeFlag === 'commonjs' ) {
87
87
throw new ERR_TYPE_MISMATCH (
88
- fileURLToPath ( url ) , ext , asyncESM . typeFlag , 'extension' ) ;
88
+ fileURLToPath ( url ) , ext , typeFlag , 'extension' ) ;
89
89
}
90
90
91
- // Conflict between package scope type and --type
91
+ // Conflict between package scope type and --entry- type
92
92
if ( ext === '.js' ) {
93
- if ( type === TYPE_MODULE && asyncESM . typeFlag === 'commonjs' ||
94
- type === TYPE_COMMONJS && asyncESM . typeFlag === 'module' ) {
93
+ if ( type === TYPE_MODULE && typeFlag === 'commonjs' ||
94
+ type === TYPE_COMMONJS && typeFlag === 'module' ) {
95
95
throw new ERR_TYPE_MISMATCH (
96
- fileURLToPath ( url ) , ext , asyncESM . typeFlag , 'scope' ) ;
96
+ fileURLToPath ( url ) , ext , typeFlag , 'scope' ) ;
97
97
}
98
98
}
99
99
}
100
100
if ( ! format ) {
101
- if ( isMain && asyncESM . typeFlag )
102
- format = asyncESM . typeFlag ;
101
+ if ( isMain && typeFlag )
102
+ format = typeFlag ;
103
103
else if ( isMain )
104
104
format = type === TYPE_MODULE ? 'module' : 'commonjs' ;
105
105
else
0 commit comments