mirror of https://github.com/nodejs/node.git
module: drop `-u` alias for `--conditions`
Old versions of mocha break after https://github.com/nodejs/node/pull/34637. This was a bug in mocha, but since this is a widely used module we can expect ecosystem breakage until modules are updated to the latest version of mocha. Drop the conflicting `-u` alias -- we can potentially bring it back once modules have been updated. PR-URL: https://github.com/nodejs/node/pull/34935 Refs: https://github.com/mochajs/mocha/issues/4417 Refs: https://github.com/nodejs/node/pull/34637 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>pull/34938/head
parent
4332f73832
commit
cc39bdf724
|
@ -76,7 +76,7 @@ $ node --completion-bash > node_bash_completion
|
|||
$ source node_bash_completion
|
||||
```
|
||||
|
||||
### `-u`, `--conditions=condition`
|
||||
### `--conditions=condition`
|
||||
<!-- YAML
|
||||
added: REPLACEME
|
||||
-->
|
||||
|
@ -1247,7 +1247,7 @@ node --require "./a.js" --require "./b.js"
|
|||
|
||||
Node.js options that are allowed are:
|
||||
<!-- node-options-node start -->
|
||||
* `--conditions`, `-u`
|
||||
* `--conditions`
|
||||
* `--diagnostic-dir`
|
||||
* `--disable-proto`
|
||||
* `--enable-fips`
|
||||
|
|
|
@ -78,7 +78,7 @@ Aborting instead of exiting causes a core file to be generated for analysis.
|
|||
.It Fl -completion-bash
|
||||
Print source-able bash completion script for Node.js.
|
||||
.
|
||||
.It Fl u , Fl -conditions Ar string
|
||||
.It Fl -conditions Ar string
|
||||
Use custom conditional exports conditions
|
||||
.Ar string
|
||||
.
|
||||
|
|
|
@ -285,7 +285,6 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
|
|||
"additional user conditions for conditional exports and imports",
|
||||
&EnvironmentOptions::conditions,
|
||||
kAllowedInEnvironment);
|
||||
AddAlias("-u", "--conditions");
|
||||
AddOption("--diagnostic-dir",
|
||||
"set dir for all output files"
|
||||
" (default: current working directory)",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Flags: --conditions=custom-condition -u another
|
||||
// Flags: --conditions=custom-condition --conditions another
|
||||
import { mustCall } from '../common/index.mjs';
|
||||
import { strictEqual } from 'assert';
|
||||
import { requireFixture, importFixture } from '../fixtures/pkgexports.mjs';
|
||||
|
|
Loading…
Reference in New Issue