We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c5087 commit 2eab95cCopy full SHA for 2eab95c
child_process.js
@@ -0,0 +1,11 @@
1
+
2
+// stub http://nodejs.org/api/child_process.html
3
4
+module.exports = {
5
+ // module-deps 3.6.4 imports child_process.spawn, even though it doesn't need it:
6
+ // (can remove after) https://github.com/substack/module-deps/pull/66
7
+ spawn: function(command, args, options) {
8
+ console.log('child_process.spawn ignored:',command,args,options);
9
+ }
10
+};
11
0 commit comments