Skip to content

Commit

Permalink
fix: upgrade @octokit/core (#83)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: require NodeJS >= 18
  • Loading branch information
wolfy1339 committed Apr 9, 2024
1 parent c6328c8 commit 2a1ee1d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export declare const Octokit: (new (...args: any[]) => {
};
plugins: any[];
} & typeof Core &
import("@octokit/core/dist-types/types").Constructor<
import("@octokit/core/types").Constructor<
void & {
paginate: import("@octokit/plugin-paginate-rest").PaginateInterface;
} & {
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">= 14"
"node": ">= 18"
},
"scripts": {
"test": "node test.js"
Expand All @@ -22,7 +22,7 @@
"license": "ISC",
"repository": "github:octoherd/octokit",
"dependencies": {
"@octokit/core": "^6.0.0",
"@octokit/core": "^6.1.2",
"@octokit/plugin-paginate-rest": "^11.0.0",
"@octokit/plugin-retry": "^7.0.0",
"@octokit/plugin-throttling": "^9.0.0",
Expand Down

0 comments on commit 2a1ee1d

Please sign in to comment.