Replace cross-fetch with node-fetch (#280)

This commit is contained in:
Steve Faulkner 2019-03-27 20:44:42 -04:00 коммит произвёл GitHub
Родитель cf61b8ac4e
Коммит c235b2a312
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 12 добавлений и 16 удалений

23
package-lock.json сгенерированный
Просмотреть файл

@ -221,6 +221,15 @@
"integrity": "sha512-Pr+6JRiKkfsFvmU/LK68oBRCQeEg36TyAbPhc2xpez24OOZZCuoIhWGTd39VZy6nGafSbxzGouFPTFD/rR1A0A==",
"dev": true
},
"@types/node-fetch": {
"version": "2.1.7",
"resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.1.7.tgz",
"integrity": "sha512-TZozHCDVrs0Aj1B9ZR5F4Q9MknDNcVd+hO5lxXOCzz07ELBey6s1gMUSZHUYHlPfRFKJFXiTnNuD7ePiI6S4/g==",
"dev": true,
"requires": {
"@types/node": "*"
}
},
"@types/priorityqueuejs": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@types/priorityqueuejs/-/priorityqueuejs-1.0.1.tgz",
@ -929,15 +938,6 @@
"is-windows": "^1.0.0"
}
},
"cross-fetch": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.1.tgz",
"integrity": "sha512-qWtpgBAF8ioqBOddRD+pHhrdzm/UWOArkrlIU7c08DlNbOxo5GfUbSY2vr90ZypWf0raW+HNN1F38pi5CEOjiQ==",
"requires": {
"node-fetch": "2.3.0",
"whatwg-fetch": "3.0.0"
}
},
"cross-spawn": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
@ -5239,11 +5239,6 @@
"uuid": "^3.1.0"
}
},
"whatwg-fetch": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz",
"integrity": "sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q=="
},
"which": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz",

Просмотреть файл

@ -38,6 +38,7 @@
"@microsoft/api-extractor": "6.3.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.8",
"@types/node-fetch": "2.1.7",
"@types/priorityqueuejs": "^1.0.1",
"@types/semaphore": "^1.1.0",
"@types/sinon": "^4.3.3",
@ -77,7 +78,7 @@
"@azure/cosmos-sign": "1.0.2",
"abort-controller": "2.0.3",
"binary-search-bounds": "2.0.3",
"cross-fetch": "3.0.1",
"node-fetch": "2.3.0",
"priorityqueuejs": "1.0.0",
"semaphore": "1.0.5",
"tslib": "^1.9.3"

Просмотреть файл

@ -1,7 +1,7 @@
import { AbortController } from "abort-controller";
import fetch from "cross-fetch";
import { Agent, OutgoingHttpHeaders } from "http";
import { RequestOptions } from "https"; // TYPES ONLY
import fetch from "node-fetch";
import { parse } from "url";
import { Constants, HTTPMethod } from "../common/constants";
import { ConnectionPolicy } from "../documents";