Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-06-19 08:27:10 +0300
committerRich Trott <rtrott@gmail.com>2021-06-21 08:33:32 +0300
commit4330fb757f76182365ad1ac1b67a6170d052c4b1 (patch)
tree661e409ab83c273de6243eb0d34f467403f0035a /node.gyp
parent15ad006d270e33240b71ff89fa7818cf86c4cbba (diff)
debugger: rename internal library for clarity
When I moved these files from node-inspect to Node.js core, I put them in lib/internal/inspector. That was a mistake. They should be in lib/internal/debugger. PR-URL: https://github.com/nodejs/node/pull/39080 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp6
1 files changed, 3 insertions, 3 deletions
diff --git a/node.gyp b/node.gyp
index 3f674c978d2..1de9edc07f6 100644
--- a/node.gyp
+++ b/node.gyp
@@ -143,6 +143,9 @@
'lib/internal/crypto/webcrypto.js',
'lib/internal/crypto/x509.js',
'lib/internal/constants.js',
+ 'lib/internal/debugger/_inspect.js',
+ 'lib/internal/debugger/inspect_client.js',
+ 'lib/internal/debugger/inspect_repl.js',
'lib/internal/dgram.js',
'lib/internal/dns/promises.js',
'lib/internal/dns/utils.js',
@@ -166,9 +169,6 @@
'lib/internal/heap_utils.js',
'lib/internal/histogram.js',
'lib/internal/idna.js',
- 'lib/internal/inspector/_inspect.js',
- 'lib/internal/inspector/inspect_client.js',
- 'lib/internal/inspector/inspect_repl.js',
'lib/internal/inspector_async_hook.js',
'lib/internal/js_stream_socket.js',
'lib/internal/legacy/processbinding.js',