Skip to content

Commit c4d8c96

Browse files
committed
Remove isomorphic-fetch in favor of global fetch
1 parent 75db19d commit c4d8c96

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"dependencies": {
2929
"babel-plugin-transform-runtime": "^6.12.0",
3030
"babel-runtime": "^6.11.6",
31-
"isomorphic-fetch": "^2.1.1",
3231
"lodash.isplainobject": "^4.0.6"
3332
},
3433
"devDependencies": {
@@ -40,6 +39,7 @@
4039
"coveralls": "^2.11.12",
4140
"eslint": "^3.3.0",
4241
"eslint-plugin-babel": "^3.3.0",
42+
"isomorphic-fetch": "^2.1.1",
4343
"nock": "^8.0.0",
4444
"normalizr": "^2.2.1",
4545
"rimraf": "^2.5.4",

src/middleware.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import fetch from 'isomorphic-fetch';
21
import isPlainObject from 'lodash.isplainobject';
32

43
import RSAA from './RSAA';

test/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import test from 'tape';
2+
import fetch from 'isomorphic-fetch';
23
import { Schema, normalize, arrayOf } from 'normalizr';
34
import nock from 'nock';
45

0 commit comments

Comments
 (0)