Skip to content

Commit 64cd62c

Browse files
committed
Upgrade dependencies
1 parent 2fe01a3 commit 64cd62c

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

package.json

+9-8
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"cacheable-lookup": "^6.0.4",
5252
"cacheable-request": "^7.0.2",
5353
"decompress-response": "^6.0.0",
54-
"form-data-encoder": "1.6.0",
54+
"form-data-encoder": "1.7.1",
5555
"get-stream": "^6.0.1",
5656
"http2-wrapper": "^2.1.9",
5757
"lowercase-keys": "^3.0.0",
@@ -64,13 +64,13 @@
6464
"@sinonjs/fake-timers": "^8.1.0",
6565
"@types/benchmark": "^2.1.1",
6666
"@types/express": "^4.17.13",
67-
"@types/node": "^16.11.7",
67+
"@types/node": "^16.11.12",
6868
"@types/pem": "^1.9.6",
6969
"@types/pify": "^5.0.1",
70-
"@types/readable-stream": "^2.3.11",
70+
"@types/readable-stream": "^2.3.12",
7171
"@types/request": "^2.48.7",
7272
"@types/sinon": "^10.0.6",
73-
"@types/sinonjs__fake-timers": "^8.1.0",
73+
"@types/sinonjs__fake-timers": "^8.1.1",
7474
"@types/tough-cookie": "^4.0.1",
7575
"ava": "^3.15.0",
7676
"axios": "^0.24.0",
@@ -86,7 +86,7 @@
8686
"formdata-node": "^4.3.1",
8787
"nock": "^13.2.1",
8888
"node-fetch": "^3.1.0",
89-
"np": "^7.5.0",
89+
"np": "^7.6.0",
9090
"nyc": "^15.1.0",
9191
"p-event": "^5.0.1",
9292
"pem": "^1.14.4",
@@ -100,8 +100,8 @@
100100
"to-readable-stream": "^3.0.0",
101101
"tough-cookie": "^4.0.0",
102102
"ts-node": "^10.4.0",
103-
"typescript": "4.5.2",
104-
"xo": "^0.46.4"
103+
"typescript": "4.5.3",
104+
"xo": "^0.47.0"
105105
},
106106
"types": "dist/source",
107107
"sideEffects": false,
@@ -151,7 +151,8 @@
151151
"@typescript-eslint/no-unsafe-assignment": "off",
152152
"@typescript-eslint/no-unsafe-call": "off",
153153
"@typescript-eslint/await-thenable": "off",
154-
"no-lone-blocks": "off"
154+
"no-lone-blocks": "off",
155+
"unicorn/no-await-expression-member": "off"
155156
}
156157
},
157158
"runkitExampleFilename": "./documentation/examples/runkit-example.js"

test/error.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import test from 'ava';
88
import getStream from 'get-stream';
99
import is from '@sindresorhus/is';
1010
import got, {RequestError, HTTPError, TimeoutError} from '../source/index.js';
11-
import Request from '../source/core';
11+
import Request from '../source/core/index.js';
1212
import withServer from './helpers/with-server.js';
1313
import invalidUrl from './helpers/invalid-url.js';
1414

test/pagination.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import delay from 'delay';
55
import getStream from 'get-stream';
66
import got, {Response} from '../source/index.js';
77
import withServer, {withBodyParsingServer} from './helpers/with-server.js';
8-
import {ExtendedHttpTestServer} from './helpers/create-http-test-server';
8+
import {ExtendedHttpTestServer} from './helpers/create-http-test-server.js';
99

1010
const thrower = (): any => {
1111
throw new Error('This should not be called');

0 commit comments

Comments
 (0)