diff options
Diffstat (limited to 'node_modules/timers-browserify')
-rw-r--r-- | node_modules/timers-browserify/CHANGELOG.md | 9 | ||||
-rw-r--r-- | node_modules/timers-browserify/main.js | 5 | ||||
-rw-r--r-- | node_modules/timers-browserify/package.json | 3 |
3 files changed, 11 insertions, 6 deletions
diff --git a/node_modules/timers-browserify/CHANGELOG.md b/node_modules/timers-browserify/CHANGELOG.md index 925fb60af..841e59c48 100644 --- a/node_modules/timers-browserify/CHANGELOG.md +++ b/node_modules/timers-browserify/CHANGELOG.md @@ -2,7 +2,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## 2.0.3 - 2017-07-31 +## 2.0.4 - 2017-08-14 + +### Fixed + +* Revert `setImmediate` and `clearImmediate` changes from 2.0.3 because they + appear to break Webpack. + +### 2.0.3 - 2017-07-31 ### Fixed diff --git a/node_modules/timers-browserify/main.js b/node_modules/timers-browserify/main.js index 672822458..001c63190 100644 --- a/node_modules/timers-browserify/main.js +++ b/node_modules/timers-browserify/main.js @@ -49,6 +49,5 @@ exports._unrefActive = exports.active = function(item) { // setimmediate attaches itself to the global object require("setimmediate"); -var global = require("global"); -exports.setImmediate = global.setImmediate; -exports.clearImmediate = global.clearImmediate; +exports.setImmediate = setImmediate; +exports.clearImmediate = clearImmediate; diff --git a/node_modules/timers-browserify/package.json b/node_modules/timers-browserify/package.json index 9a0332a17..019612e29 100644 --- a/node_modules/timers-browserify/package.json +++ b/node_modules/timers-browserify/package.json @@ -2,7 +2,7 @@ "author": "J. Ryan Stinnett <jryans@gmail.com> (http://convolv.es/)", "name": "timers-browserify", "description": "timers module for browserify", - "version": "2.0.3", + "version": "2.0.4", "homepage": "https://github.com/jryans/timers-browserify", "bugs": "https://github.com/jryans/timers-browserify/issues", "repository": { @@ -23,7 +23,6 @@ ], "main": "main.js", "dependencies": { - "global": "^4.3.2", "setimmediate": "^1.0.4" }, "devDependencies": { |