Skip to content
This repository was archived by the owner on Feb 24, 2021. It is now read-only.

Commit 4f8262b

Browse files
authored
Merge pull request #79 from braytonstafford/master
isomorphic-fetch migrate to cross-fetch
2 parents 1c10cf1 + 29f765b commit 4f8262b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ lib
33
lerna-debug.log
44
npm-debug.log
55
yarn-error.log
6-
coverage
6+
coverage
7+
.idea

packages/ooth-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"repository": "nmaro/ooth",
1919
"dependencies": {
20-
"isomorphic-fetch": "^2.2.1",
20+
"cross-fetch": "^3.0.0",
2121
"lodash": "^4.17.10",
2222
"url": "^0.11.0"
2323
},

packages/ooth-client/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as fetch from 'isomorphic-fetch';
1+
import fetch from 'cross-fetch';
22
import { isEqual } from 'lodash';
33

44
const url = require('url');

0 commit comments

Comments
 (0)