aboutsummaryrefslogtreecommitdiff
path: root/node_modules/process
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-24 15:10:37 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-24 15:11:17 +0200
commit7a3df06eb573d36142bd1a8e03c5ce8752d300b3 (patch)
tree70bfaea8884c374876f607774850a3a51c0cb381 /node_modules/process
parentaca1143cb9eed16cf37f04e475e4257418dd18ac (diff)
fix build issues and add typedoc
Diffstat (limited to 'node_modules/process')
-rw-r--r--node_modules/process/browser.js4
-rw-r--r--node_modules/process/package.json2
2 files changed, 5 insertions, 1 deletions
diff --git a/node_modules/process/browser.js b/node_modules/process/browser.js
index d3e30e9b3..d05936230 100644
--- a/node_modules/process/browser.js
+++ b/node_modules/process/browser.js
@@ -168,6 +168,10 @@ process.off = noop;
process.removeListener = noop;
process.removeAllListeners = noop;
process.emit = noop;
+process.prependListener = noop;
+process.prependOnceListener = noop;
+
+process.listeners = function (name) { return [] }
process.binding = function (name) {
throw new Error('process.binding is not supported');
diff --git a/node_modules/process/package.json b/node_modules/process/package.json
index 907a3b912..d2cfaade4 100644
--- a/node_modules/process/package.json
+++ b/node_modules/process/package.json
@@ -9,7 +9,7 @@
"test": "mocha test.js",
"browser": "zuul --no-coverage --ui mocha-bdd --local 8080 -- test.js"
},
- "version": "0.11.9",
+ "version": "0.11.10",
"repository": {
"type": "git",
"url": "git://github.com/shtylman/node-process.git"