`--es-module-specifier-resolution` is the only flagged portion of the ESM implementation that does not have the word experimental in the flag name. This commit changes the flag to: `--experimental-specifier-resolution` `--es-module-specifier-resolution` remains as an alias for backwards compatibility but it is no longer documented. PR-URL: https://github.com/nodejs/node/pull/30678 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com>
18 lines
665 B
JavaScript
18 lines
665 B
JavaScript
// Flags: --es-module-specifier-resolution=node
|
|
import '../common/index.mjs';
|
|
import assert from 'assert';
|
|
|
|
// commonJS index.js
|
|
import commonjs from '../fixtures/es-module-specifiers/package-type-commonjs';
|
|
// esm index.js
|
|
import module from '../fixtures/es-module-specifiers/package-type-module';
|
|
// Notice the trailing slash
|
|
import success, { explicit, implicit, implicitModule }
|
|
from '../fixtures/es-module-specifiers/';
|
|
|
|
assert.strictEqual(commonjs, 'commonjs');
|
|
assert.strictEqual(module, 'module');
|
|
assert.strictEqual(success, 'success');
|
|
assert.strictEqual(explicit, 'esm');
|
|
assert.strictEqual(implicit, 'cjs');
|
|
assert.strictEqual(implicitModule, 'cjs');
|