Skip to content

Commit 2a1ee1d

Browse files
authored
fix: upgrade @octokit/core (#83)
BREAKING CHANGE: require NodeJS >= 18
1 parent c6328c8 commit 2a1ee1d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export declare const Octokit: (new (...args: any[]) => {
2929
};
3030
plugins: any[];
3131
} & typeof Core &
32-
import("@octokit/core/dist-types/types").Constructor<
32+
import("@octokit/core/types").Constructor<
3333
void & {
3434
paginate: import("@octokit/plugin-paginate-rest").PaginateInterface;
3535
} & {

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"exports": "./index.js",
1010
"types": "./index.d.ts",
1111
"engines": {
12-
"node": ">= 14"
12+
"node": ">= 18"
1313
},
1414
"scripts": {
1515
"test": "node test.js"
@@ -22,7 +22,7 @@
2222
"license": "ISC",
2323
"repository": "github:octoherd/octokit",
2424
"dependencies": {
25-
"@octokit/core": "^6.0.0",
25+
"@octokit/core": "^6.1.2",
2626
"@octokit/plugin-paginate-rest": "^11.0.0",
2727
"@octokit/plugin-retry": "^7.0.0",
2828
"@octokit/plugin-throttling": "^9.0.0",

0 commit comments

Comments
 (0)