diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-08-14 05:01:11 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-08-14 05:02:09 +0200 |
commit | 363723fc84f7b8477592e0105aeb331ec9a017af (patch) | |
tree | 29f92724f34131bac64d6a318dd7e30612e631c7 /node_modules/asap | |
parent | 5634e77ad96bfe1818f6b6ee70b7379652e5487f (diff) |
node_modules
Diffstat (limited to 'node_modules/asap')
-rw-r--r-- | node_modules/asap/CHANGES.md | 6 | ||||
-rw-r--r-- | node_modules/asap/package.json | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/node_modules/asap/CHANGES.md b/node_modules/asap/CHANGES.md index e9ffa4626..f105b9195 100644 --- a/node_modules/asap/CHANGES.md +++ b/node_modules/asap/CHANGES.md @@ -1,4 +1,10 @@ +## 2.0.6 + +Version 2.0.4 adds support for React Native by clarifying in package.json that +the browser environment does not support Node.js domains. +Why this is necessary, we leave as an exercise for the user. + ## 2.0.3 Version 2.0.3 fixes a bug when adjusting the capacity of the task queue. diff --git a/node_modules/asap/package.json b/node_modules/asap/package.json index 6af17d49c..ae9f303bc 100644 --- a/node_modules/asap/package.json +++ b/node_modules/asap/package.json @@ -1,6 +1,6 @@ { "name": "asap", - "version": "2.0.5", + "version": "2.0.6", "description": "High-priority task queue for Node.js and browsers", "keywords": [ "event", @@ -20,6 +20,9 @@ "./raw.js": "./browser-raw.js", "./test/domain.js": "./test/browser-domain.js" }, + "react-native": { + "domain": false + }, "files": [ "raw.js", "asap.js", |