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-22 19:06:20 +0300
commit716ee1531cf5493940ac9b1ab4ef812279965d91 (patch)
tree606432084cc256019e0fb979279fb6c95a7ef20a /node.gyp
parentb7ee9d82872ed7d3139528c022d9b0e223813699 (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 Backport-PR-URL: https://github.com/nodejs/node/pull/39446 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 ce902069ed6..8ba0dfebe89 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',