Skip to content

Commit d930d64

Browse files
authored
Remove node-fetch imports (#519)
* Remove node-fetch imports * Remove node-fetch library
1 parent 2ccf6ff commit d930d64

File tree

4 files changed

+0
-29
lines changed

4 files changed

+0
-29
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
"lodash": "^4.17.21",
3838
"lru-cache": "^4.1.5",
3939
"maplibre-gl": "3.1.0",
40-
"node-fetch": "2.7.0",
4140
"semver": "^7.6.3",
4241
"topojson-client": "^3.1.0"
4342
},

src/ems_client.ts

-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import _ from 'lodash';
88
import { TMSService } from './tms_service';
99
import { EMSFormatType, FileLayer } from './file_layer';
1010
import { FeatureCollection } from 'geojson';
11-
import { Response } from 'node-fetch';
1211

1312
import semverCoerce from 'semver/functions/coerce';
1413
import semverValid from 'semver/functions/valid';
@@ -19,7 +18,6 @@ import { format as formatUrl, parse as parseUrl, UrlObject } from 'url';
1918
import { toAbsoluteUrl } from './utils';
2019
import { ParsedUrlQueryInput } from 'querystring';
2120
import LRUCache from 'lru-cache';
22-
import { RequestInfo } from 'node-fetch';
2321

2422
const REST_API_REGEX = /\d{4}-\d{2}-\d{2}/;
2523
export const LATEST_API_URL_PATH = 'latest';

test/ems_client_util.ts

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
*/
77

88
import { EMSClient } from '../src';
9-
import fetch from 'node-fetch';
109

1110
import EMS_CATALOGUE from './ems_mocks/sample_manifest.json';
1211
import EMS_FILES from './ems_mocks/sample_files.json';

yarn.lock

-25
Original file line numberDiff line numberDiff line change
@@ -4035,13 +4035,6 @@ natural-compare@^1.4.0:
40354035
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
40364036
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
40374037

4038-
4039-
version "2.7.0"
4040-
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
4041-
integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
4042-
dependencies:
4043-
whatwg-url "^5.0.0"
4044-
40454038
node-int64@^0.4.0:
40464039
version "0.4.0"
40474040
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
@@ -4649,11 +4642,6 @@ topojson-client@^3.1.0:
46494642
dependencies:
46504643
commander "2"
46514644

4652-
tr46@~0.0.3:
4653-
version "0.0.3"
4654-
resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
4655-
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
4656-
46574645
ts-api-utils@^1.3.0:
46584646
version "1.3.0"
46594647
resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1"
@@ -4813,19 +4801,6 @@ walker@^1.0.8:
48134801
dependencies:
48144802
makeerror "1.0.12"
48154803

4816-
webidl-conversions@^3.0.0:
4817-
version "3.0.1"
4818-
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
4819-
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
4820-
4821-
whatwg-url@^5.0.0:
4822-
version "5.0.0"
4823-
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
4824-
integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
4825-
dependencies:
4826-
tr46 "~0.0.3"
4827-
webidl-conversions "^3.0.0"
4828-
48294804
which@^1.3.1:
48304805
version "1.3.1"
48314806
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"

0 commit comments

Comments
 (0)