aboutsummaryrefslogtreecommitdiffstats
path: root/packages/utils
diff options
context:
space:
mode:
authorBrandon Millman <brandon@0xproject.com>2018-07-21 04:51:12 +0800
committerGitHub <noreply@github.com>2018-07-21 04:51:12 +0800
commite54501522dcf93521c8ff7dfe5b216cffeaa1b29 (patch)
tree70b54c3ccd83d964f78e7569361e775556a456b5 /packages/utils
parentdc151f7290072c9776c9b351ae30bf577fcd1015 (diff)
parentf2baeddc301206889f8ee2bdb80b0018e03e411f (diff)
downloaddexon-sol-tools-e54501522dcf93521c8ff7dfe5b216cffeaa1b29.tar
dexon-sol-tools-e54501522dcf93521c8ff7dfe5b216cffeaa1b29.tar.gz
dexon-sol-tools-e54501522dcf93521c8ff7dfe5b216cffeaa1b29.tar.bz2
dexon-sol-tools-e54501522dcf93521c8ff7dfe5b216cffeaa1b29.tar.lz
dexon-sol-tools-e54501522dcf93521c8ff7dfe5b216cffeaa1b29.tar.xz
dexon-sol-tools-e54501522dcf93521c8ff7dfe5b216cffeaa1b29.tar.zst
dexon-sol-tools-e54501522dcf93521c8ff7dfe5b216cffeaa1b29.zip
Merge pull request #903 from 0xProject/bug/website/fix-website
Add AbortController polyfill to fetchAsync in utils
Diffstat (limited to 'packages/utils')
-rw-r--r--packages/utils/CHANGELOG.json9
-rw-r--r--packages/utils/package.json1
-rw-r--r--packages/utils/src/fetchAsync.ts3
3 files changed, 13 insertions, 0 deletions
diff --git a/packages/utils/CHANGELOG.json b/packages/utils/CHANGELOG.json
index 4ff5236ec..92149a7d4 100644
--- a/packages/utils/CHANGELOG.json
+++ b/packages/utils/CHANGELOG.json
@@ -1,5 +1,14 @@
[
{
+ "version": "1.0.1",
+ "changes": [
+ {
+ "note": "Add `AbortController` polyfill to `fetchAsync`",
+ "pr": 903
+ }
+ ]
+ },
+ {
"timestamp": 1532043000,
"version": "1.0.0",
"changes": [
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 7e3d46ce7..382604fdd 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -38,6 +38,7 @@
"@0xproject/types": "^1.0.0-rc.1",
"@0xproject/typescript-typings": "^1.0.0",
"@types/node": "^8.0.53",
+ "abortcontroller-polyfill": "^1.1.9",
"bignumber.js": "~4.1.0",
"detect-node": "2.0.3",
"ethereum-types": "^1.0.0",
diff --git a/packages/utils/src/fetchAsync.ts b/packages/utils/src/fetchAsync.ts
index c02e5baba..b4c85718d 100644
--- a/packages/utils/src/fetchAsync.ts
+++ b/packages/utils/src/fetchAsync.ts
@@ -1,5 +1,8 @@
import isNode = require('detect-node');
import 'isomorphic-fetch';
+// WARNING: This needs to be imported after isomorphic-fetch: https://github.com/mo/abortcontroller-polyfill#using-it-on-browsers-without-fetch
+// tslint:disable-next-line:ordered-imports
+import 'abortcontroller-polyfill/dist/abortcontroller-polyfill-only';
export const fetchAsync = async (
endpoint: string,