Skip to content

Commit ff4b64f

Browse files
committed
feat!: bump version to 9.0.0, upgrade @actions/github to v9
1 parent 450193c commit ff4b64f

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

package.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"engines": {
55
"node": ">=24"
66
},
7-
"version": "7.0.1",
7+
"version": "9.0.0",
88
"author": "GitHub",
99
"license": "MIT",
1010
"main": "dist/index.js",
1111
"types": "types/async-function.d.ts",
1212
"scripts": {
1313
"build": "npm run build:types && ncc build src/main.ts",
14-
"build:types": "tsc src/async-function.ts -t es5 --declaration --allowJs --emitDeclarationOnly --outDir types",
14+
"build:types": "tsc src/async-function.ts --target es2022 --module es2022 --moduleResolution bundler --declaration --emitDeclarationOnly --outDir types",
1515
"format:check": "prettier --check src __test__",
1616
"format:write": "prettier --write src __test__",
1717
"lint": "eslint src __test__",
@@ -28,6 +28,11 @@
2828
"^.+\\.ts$": [
2929
"ts-jest",
3030
{
31+
"tsconfig": {
32+
"target": "es2022",
33+
"module": "commonjs",
34+
"moduleResolution": "bundler"
35+
},
3136
"diagnostics": {
3237
"ignoreCodes": [
3338
"151001"
@@ -40,12 +45,12 @@
4045
"dependencies": {
4146
"@actions/core": "^1.10.1",
4247
"@actions/exec": "^1.1.1",
43-
"@actions/github": "^6.0.0",
48+
"@actions/github": "^9.0.0",
4449
"@actions/glob": "^0.4.0",
4550
"@actions/io": "^1.1.3",
46-
"@octokit/core": "^5.0.1",
47-
"@octokit/plugin-request-log": "^4.0.0",
48-
"@octokit/plugin-retry": "^6.0.1",
51+
"@octokit/core": "^7.0.0",
52+
"@octokit/plugin-request-log": "^6.0.0",
53+
"@octokit/plugin-retry": "^8.0.0",
4954
"@types/node": "^24.1.0"
5055
},
5156
"devDependencies": {

0 commit comments

Comments
 (0)