Skip to content

Commit

Permalink
doc: move stability index after history section for consistency
Browse files Browse the repository at this point in the history
PR-URL: #56997
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Michaël Zasso <[email protected]>
Reviewed-By: Ulises Gascón <[email protected]>
  • Loading branch information
aduh95 authored and targos committed Feb 17, 2025
1 parent 7e2dac9 commit a6b7bce
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 deletions.
12 changes: 6 additions & 6 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -586,14 +586,14 @@ Disable the ability of starting a debugging session by sending a

### `--disable-warning=code-or-type`

> Stability: 1.1 - Active development
<!-- YAML
added:
- v21.3.0
- v20.11.0
-->

> Stability: 1.1 - Active development
Disable specific process warnings by `code` or `type`.

Warnings emitted from [`process.emitWarning()`][emit_warning] may contain a
Expand Down Expand Up @@ -795,19 +795,17 @@ node --entry-url 'data:text/javascript,console.log("Hello")'

### `--env-file-if-exists=config`

> Stability: 1.1 - Active development
<!-- YAML
added: v22.9.0
-->

> Stability: 1.1 - Active development
Behavior is the same as [`--env-file`][], but an error is not thrown if the file
does not exist.

### `--env-file=config`

> Stability: 1.1 - Active development
<!-- YAML
added: v20.6.0
changes:
Expand All @@ -818,6 +816,8 @@ changes:
description: Add support to multi-line values.
-->

> Stability: 1.1 - Active development
Loads environment variables from a file relative to the current directory,
making them available to applications on `process.env`. The [environment
variables which configure Node.js][environment_variables], such as `NODE_OPTIONS`,
Expand Down
4 changes: 2 additions & 2 deletions doc/api/inspector.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ const inspector = require('node:inspector');

## Promises API

> Stability: 1 - Experimental
<!-- YAML
added: v19.0.0
-->

> Stability: 1 - Experimental
### Class: `inspector.Session`

* Extends: {EventEmitter}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/url.md
Original file line number Diff line number Diff line change
Expand Up @@ -716,12 +716,12 @@ if `input` is not a valid.

### Class: `URLPattern`

> Stability: 1 - Experimental
<!-- YAML
added: v23.8.0
-->

> Stability: 1 - Experimental
The `URLPattern` API provides an interface to match URLs or parts of URLs
against a pattern.

Expand Down
10 changes: 4 additions & 6 deletions doc/api/util.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,6 @@ util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 });

## `util.getCallSites(frameCountOrOptions, [options])`

> Stability: 1.1 - Active development
<!-- YAML
added: v22.9.0
changes:
Expand All @@ -382,6 +380,8 @@ changes:
description: The API is renamed from `util.getCallSite` to `util.getCallSites()`.
-->

> Stability: 1.1 - Active development
* `frameCount` {number} Optional number of frames to capture as call site objects.
**Default:** `10`. Allowable range is between 1 and 200.
* `options` {Object} Optional
Expand Down Expand Up @@ -1721,14 +1721,14 @@ $ node negate.js --no-logfile --logfile=test.log --color --no-color
## `util.parseEnv(content)`
> Stability: 1.1 - Active development
<!-- YAML
added:
- v21.7.0
- v20.12.0
-->
> Stability: 1.1 - Active development
* `content` {string}
The raw contents of a `.env` file.
Expand Down Expand Up @@ -1922,8 +1922,6 @@ console.log(util.stripVTControlCharacters('\u001B[4mvalue\u001B[0m'));
## `util.styleText(format, text[, options])`
> Stability: 2 - Stable.
<!-- YAML
added:
- v21.7.0
Expand Down

0 comments on commit a6b7bce

Please sign in to comment.