Skip to content

Commit b798f64

Browse files
guybedfordTrott
authored andcommitted
esm: unflag --experimental-exports
PR-URL: #29867 Reviewed-By: Jan Krems <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 1294c7e commit b798f64

File tree

6 files changed

+3
-20
lines changed

6 files changed

+3
-20
lines changed

doc/api/cli.md

-8
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,6 @@ the ability to import a directory that has an index file.
158158

159159
Please see [customizing esm specifier resolution][] for example usage.
160160

161-
### `--experimental-exports`
162-
<!-- YAML
163-
added: v12.7.0
164-
-->
165-
166-
Enable experimental resolution using the `exports` field in `package.json`.
167-
168161
### `--experimental-json-modules`
169162
<!-- YAML
170163
added: v12.9.0
@@ -998,7 +991,6 @@ Node.js options that are allowed are:
998991
* `--enable-fips`
999992
* `--enable-source-maps`
1000993
* `--es-module-specifier-resolution`
1001-
* `--experimental-exports`
1002994
* `--experimental-json-modules`
1003995
* `--experimental-loader`
1004996
* `--experimental-modules`

doc/api/modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ NODE_MODULES_PATHS(START)
202202
5. return DIRS
203203
```
204204

205-
If `--experimental-exports` is enabled, Node.js allows packages loaded via
205+
Node.js allows packages loaded via
206206
`LOAD_NODE_MODULES` to explicitly declare which file paths to expose and how
207207
they should be interpreted. This expands on the control packages already had
208208
using the `main` field.

lib/internal/modules/cjs/loader.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ const {
7070
} = require('internal/errors').codes;
7171
const { validateString } = require('internal/validators');
7272
const pendingDeprecation = getOptionValue('--pending-deprecation');
73-
const experimentalExports = getOptionValue('--experimental-exports');
7473

7574
module.exports = { wrapSafe, Module };
7675

@@ -369,7 +368,7 @@ function findLongestRegisteredExtension(filename) {
369368
const EXPORTS_PATTERN = /^((?:@[^/\\%]+\/)?[^./\\%][^/\\%]*)(\/.*)?$/;
370369
function resolveExports(nmPath, request, absoluteRequest) {
371370
// The implementation's behavior is meant to mirror resolution in ESM.
372-
if (experimentalExports && !absoluteRequest) {
371+
if (!absoluteRequest) {
373372
const [, name, expansion = ''] =
374373
StringPrototype.match(request, EXPORTS_PATTERN) || [];
375374
if (!name) {

src/module_wrap.cc

+1-3
Original file line numberDiff line numberDiff line change
@@ -652,8 +652,7 @@ Maybe<const PackageConfig*> GetPackageConfig(Environment* env,
652652
}
653653

654654
Local<Value> exports_v;
655-
if (env->options()->experimental_exports &&
656-
pkg_json->Get(env->context(),
655+
if (pkg_json->Get(env->context(),
657656
env->exports_string()).ToLocal(&exports_v) &&
658657
!exports_v->IsNullOrUndefined()) {
659658
Global<Value> exports;
@@ -995,7 +994,6 @@ Maybe<URL> PackageExportsResolve(Environment* env,
995994
const std::string& pkg_subpath,
996995
const PackageConfig& pcfg,
997996
const URL& base) {
998-
CHECK(env->options()->experimental_exports);
999997
Isolate* isolate = env->isolate();
1000998
Local<Context> context = env->context();
1001999
Local<Value> exports = pcfg.exports.Get(isolate);

src/node_options.cc

-5
Original file line numberDiff line numberDiff line change
@@ -317,10 +317,6 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
317317
"experimental Source Map V3 support",
318318
&EnvironmentOptions::enable_source_maps,
319319
kAllowedInEnvironment);
320-
AddOption("--experimental-exports",
321-
"experimental support for exports in package.json",
322-
&EnvironmentOptions::experimental_exports,
323-
kAllowedInEnvironment);
324320
AddOption("--experimental-json-modules",
325321
"experimental JSON interop support for the ES Module loader",
326322
&EnvironmentOptions::experimental_json_modules,
@@ -335,7 +331,6 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
335331
"experimental ES Module support and caching modules",
336332
&EnvironmentOptions::experimental_modules,
337333
kAllowedInEnvironment);
338-
Implies("--experimental-modules", "--experimental-exports");
339334
AddOption("--experimental-wasm-modules",
340335
"experimental ES Module support for webassembly modules",
341336
&EnvironmentOptions::experimental_wasm_modules,

src/node_options.h

-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ class EnvironmentOptions : public Options {
101101
public:
102102
bool abort_on_uncaught_exception = false;
103103
bool enable_source_maps = false;
104-
bool experimental_exports = false;
105104
bool experimental_json_modules = false;
106105
bool experimental_modules = false;
107106
std::string es_module_specifier_resolution;

0 commit comments

Comments
 (0)