From 533d31bc4e9c0cae2b9047850c39c68bf494595e Mon Sep 17 00:00:00 2001 From: Marvin Hagemeister Date: Wed, 14 Aug 2024 14:33:42 +0200 Subject: fix: `node:inspector` not being registered (#25007) For some reason we didn't register the `node:inspector` module, which lead to a panic when trying to import it. This PR registers it. Related: https://github.com/denoland/deno/issues/25004 --- tools/core_import_map.json | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') diff --git a/tools/core_import_map.json b/tools/core_import_map.json index 726163e08..e7703a40c 100644 --- a/tools/core_import_map.json +++ b/tools/core_import_map.json @@ -78,6 +78,7 @@ "node:http": "../ext/node/polyfills/http.ts", "node:http2": "../ext/node/polyfills/http2.ts", "node:https": "../ext/node/polyfills/https.ts", + "node:inspector": "../ext/node/polyfills/inspector.ts", "ext:deno_node/inspector.ts": "../ext/node/polyfills/inspector.ts", "ext:deno_node/internal_binding/_libuv_winerror.ts": "../ext/node/polyfills/internal_binding/_libuv_winerror.ts", "ext:deno_node/internal_binding/_listen.ts": "../ext/node/polyfills/internal_binding/_listen.ts", -- cgit v1.2.3