summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMarvin Hagemeister <marvin@deno.com>2024-08-14 14:33:42 +0200
committerGitHub <noreply@github.com>2024-08-14 12:33:42 +0000
commit533d31bc4e9c0cae2b9047850c39c68bf494595e (patch)
tree2c2b312712a088bbe3e287e3ac20a6aeaeb7cb5e /tools
parent3b4cbc189c6548c10a9e3ffc04453bdf5b4c0bf0 (diff)
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
Diffstat (limited to 'tools')
-rw-r--r--tools/core_import_map.json1
1 files changed, 1 insertions, 0 deletions
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",