diff options
author | Evan Lucas <evanlucas@me.com> | 2015-05-22 09:52:05 -0500 |
---|---|---|
committer | Evan Lucas <evanlucas@me.com> | 2015-05-28 09:38:29 -0500 |
commit | a77c330c32fc1c2ffd5069e3ca57e4d3478b2e5e (patch) | |
tree | 281402c01ca42b13a8f3b615658077fd9a4661da /node.gyp | |
parent | fbd2b597163a687c5485186161891ac54bef441a (diff) | |
download | node-new-a77c330c32fc1c2ffd5069e3ca57e4d3478b2e5e.tar.gz |
child_process: expose ChildProcess constructor
Creates two new internal modules (child_process and socket_list) for
better readability.
Exposes the ChildProcess constructor from the child_process module so
one can now `require(‘child_process’).ChildProcess`
Fixes: https://github.com/nodejs/io.js/issues/1751
PR-URL: https://github.com/nodejs/io.js/pull/1760
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r-- | node.gyp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -70,8 +70,10 @@ 'lib/vm.js', 'lib/zlib.js', + 'lib/internal/child_process.js', 'lib/internal/freelist.js', 'lib/internal/smalloc.js', + 'lib/internal/socket_list.js', 'lib/internal/repl.js', ], }, |