diff --git a/Makefile b/Makefile index 648f684d74aa57..fa1162787a300d 100644 --- a/Makefile +++ b/Makefile @@ -780,7 +780,9 @@ test-v8 test-v8-intl test-v8-benchmarks test-v8-all: endif apidoc_dirs = out/doc out/doc/api out/doc/api/assets -apidoc_sources = $(wildcard doc/api/*.md) +skip_apidoc_files = doc/api/quic.md + +apidoc_sources = $(filter-out $(skip_apidoc_files), $(wildcard doc/api/*.md)) apidocs_html = $(addprefix out/,$(apidoc_sources:.md=.html)) apidocs_json = $(addprefix out/,$(apidoc_sources:.md=.json)) diff --git a/doc/api/cli.md b/doc/api/cli.md index 47e86d0c324395..0da7d851a3c39c 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -993,14 +993,6 @@ If the ES module being `require()`'d contains top-level `await`, this flag allows Node.js to evaluate the module, try to locate the top-level awaits, and print their location to help users find them. -### `--experimental-quic` - - - -Enables the experimental `node:quic` built-in module. - ### `--experimental-require-module`