From 0599c6ea669465720c084542c85a84b0bf21a6e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 19 Jun 2026 18:26:06 +0200 Subject: [PATCH] reference: drop the orphaned assert/strict node module from the sidebar The node sidebar lists modules from node-rewrite-map.json, but node:assert/strict only re-exports node:assert and produces no symbols of its own, so deno doc generates no page for it (0 entries in node.json). The sidebar still linked to /api/node/assert/strict/ though - a 404 on every node reference page. Removing it from the rewrite map drops the broken link with no effect on generated output (it produced nothing). assert/strict users find the same symbols under node:assert, which is unchanged. This is the node counterpart of the Temporal fix (#3323); assert/strict is the only such orphan in the node module list. --- reference_gen/node-rewrite-map.json | 1 - 1 file changed, 1 deletion(-) diff --git a/reference_gen/node-rewrite-map.json b/reference_gen/node-rewrite-map.json index 09038f305..b8fb3dd4c 100644 --- a/reference_gen/node-rewrite-map.json +++ b/reference_gen/node-rewrite-map.json @@ -1,6 +1,5 @@ { "assert": "./types/node/node__assert.d.ts", - "assert/strict": "./types/node/node__assert--strict.d.ts", "async_hooks": "./types/node/node__async_hooks.d.ts", "buffer": "./types/node/node__buffer.d.ts", "child_process": "./types/node/node__child_process.d.ts",