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:
authorMatteo Collina <hello@matteocollina.com>2020-09-16 20:05:06 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2020-09-21 11:23:06 +0300
commit9c62e0e384e2ea5a45a4011f31c97be60f2a0737 (patch)
tree59fb7dd36079b8ed34e132b6fd44e49f32813a5a /node.gyp
parent039c274dded372ec3f59b31dafa8cab75277d44f (diff)
stream: move to internal/streams
Move all the streams constructors to internal/streams and avoid a circular dependencies between the modules. See: https://github.com/nodejs/readable-stream/issues/348 PR-URL: https://github.com/nodejs/node/pull/35239 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp5
1 files changed, 5 insertions, 0 deletions
diff --git a/node.gyp b/node.gyp
index 5da3ae61bcb..b0b045b02ba 100644
--- a/node.gyp
+++ b/node.gyp
@@ -236,6 +236,11 @@
'lib/internal/streams/duplexpair.js',
'lib/internal/streams/from.js',
'lib/internal/streams/legacy.js',
+ 'lib/internal/streams/readable.js',
+ 'lib/internal/streams/writable.js',
+ 'lib/internal/streams/duplex.js',
+ 'lib/internal/streams/passthrough.js',
+ 'lib/internal/streams/transform.js',
'lib/internal/streams/destroy.js',
'lib/internal/streams/state.js',
'lib/internal/streams/pipeline.js',