Skip to content

Commit 06dd914

Browse files
committed
chore: fix dependencies
1 parent e0f405b commit 06dd914

File tree

4 files changed

+35
-18
lines changed

4 files changed

+35
-18
lines changed

cli/package-lock.json

Lines changed: 30 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
"clipanion": "^3.2.0-rc.10",
4444
"fs-extra": "^10.0.0",
4545
"got": "^12.0.0",
46-
"got-fetch": "^5.0.2",
46+
"got-fetch": "^5.1.1",
4747
"graphql": "^15.8.0",
4848
"ink": "^3.2.0",
4949
"js-yaml": "^4.1.0",
5050
"openapi3-ts": "^2.0.1",
51-
"prettier": "^2.5.1",
51+
"prettier": "^2.6.2",
5252
"react": "^17.0.2",
5353
"rxjs": "^7.5.4",
5454
"slash": "^4.0.0",
@@ -70,6 +70,7 @@
7070
"@types/fs-extra": "^9.0.13",
7171
"@types/js-yaml": "^4.0.3",
7272
"@types/nock": "^11.1.0",
73+
"@types/prettier": "^2.6.1",
7374
"@types/react": "^17.0.39",
7475
"@types/slash": "^3.0.0",
7576
"nock": "^13.2.1",

cli/src/prompts/Github.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const Github = ({ onSubmit, token }: GithubProps) => {
4545
Authorization: `Bearer ${token}`,
4646
}
4747
: {},
48-
fetch,
48+
fetch: fetch as any,
4949
}),
5050
cache: new InMemoryCache(),
5151
}),

cli/src/prompts/GithubPullRequest.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const GithubPullRequest = ({
4949
Authorization: `Bearer ${token}`,
5050
}
5151
: {},
52-
fetch,
52+
fetch: fetch as any,
5353
}),
5454
cache: new InMemoryCache(),
5555
}),

0 commit comments

Comments
 (0)