- update dependencies

- upgrade octokit/rest
- attempt to fix jest with new octokit version
This commit is contained in:
Mike Penz
2025-01-31 19:16:53 +01:00
parent 47477f0973
commit 0f404b0f90
14 changed files with 866 additions and 1049 deletions
+10 -10
View File
@@ -12,10 +12,10 @@
"format-fix": "eslint --fix src/**.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test-github": "jest __tests__/*.test.ts",
"test-gitea": "jest __tests__/gitea/*.test.ts",
"test-demo": "jest __tests__/demo/*.test.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test-github": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/*.test.ts",
"test-gitea": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/gitea/*.test.ts",
"test-demo": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/demo/*.test.ts",
"all": "npm run build && npm run format && npm run lint && npm run package && npm run test-github"
},
"repository": {
@@ -40,22 +40,22 @@
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.1.1",
"@octokit/rest": "^21.1.0",
"gitea-js": "^1.23.0",
"globals": "^15.14.0",
"https-proxy-agent": "^7.0.6",
"moment": "^2.30.1",
"semver": "^7.6.3"
"semver": "^7.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"@types/node": "^22.12.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.19.0",
"eslint-plugin-github": "^5.1.5",
"eslint-plugin-github": "^5.1.7",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",