-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update all deps to latest version
- Loading branch information
Showing
9 changed files
with
15,792 additions
and
11,326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
bunx lint-staged |
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import type { Maybe } from '@octokit/graphql-schema/schema.js' | ||
import type { Maybe } from '@octokit/graphql-schema' | ||
|
||
export * from '@octokit/graphql-schema/schema.js' | ||
export * from '@octokit/graphql-schema' | ||
|
||
export type InputMaybe<T> = Maybe<T> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import { Octokit } from '@octokit/action' | ||
import { paginateGraphql } from '@octokit/plugin-paginate-graphql' | ||
import { paginateGraphQL } from '@octokit/plugin-paginate-graphql' | ||
import fetch from 'node-fetch' | ||
|
||
export const getOctokit = ({ ghToken }: { ghToken: string }) => { | ||
const OctokitWithPlugins = Octokit.plugin(paginateGraphql) | ||
const OctokitWithPlugins = Octokit.plugin(paginateGraphQL) | ||
return new OctokitWithPlugins({ auth: ghToken, request: { fetch } }) | ||
} |