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
committerRichard Lau <rlau@redhat.com>2021-07-20 14:11:38 +0300
commit4c2b813799e9f10403d4aaba4ab8b4fc3bd551d2 (patch)
tree30bf9ad024392f5075e8b67cfeff81f5f1ad2c9a /node.gyp
parent6b2fea38d1a9dfd852ad630ae85a918d6103edc4 (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 117f65bb604..3cde4992a75 100644
--- a/node.gyp
+++ b/node.gyp
@@ -125,6 +125,9 @@
'lib/internal/crypto/sig.js',
'lib/internal/crypto/util.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',
@@ -148,9 +151,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/linkedlist.js',