Merge pull request #320 from actions/dependabot/npm_and_yarn/npm-development-3987de67b0

Bump the npm-development group with 16 updates
This commit is contained in:
Nick Alteen
2025-07-15 15:10:29 -04:00
committed by GitHub
5 changed files with 580 additions and 360 deletions

8
dist/index.js generated vendored
View File

@@ -35,11 +35,15 @@ function getDefaultExportFromCjs (x) {
} }
function getAugmentedNamespace(n) { function getAugmentedNamespace(n) {
if (n.__esModule) return n; if (Object.prototype.hasOwnProperty.call(n, '__esModule')) return n;
var f = n.default; var f = n.default;
if (typeof f == "function") { if (typeof f == "function") {
var a = function a () { var a = function a () {
if (this instanceof a) { var isInstance = false;
try {
isInstance = this instanceof a;
} catch {}
if (isInstance) {
return Reflect.construct(f, arguments, this.constructor); return Reflect.construct(f, arguments, this.constructor);
} }
return f.apply(this, arguments); return f.apply(this, arguments);

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

899
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -44,32 +44,32 @@
"@octokit/rest": "^21.1.1" "@octokit/rest": "^21.1.1"
}, },
"devDependencies": { "devDependencies": {
"@eslint/compat": "^1.2.6", "@eslint/compat": "^1.3.1",
"@github/local-action": "^2.6.2", "@github/local-action": "^2.6.2",
"@jest/globals": "^29.7.0", "@jest/globals": "^29.7.0",
"@octokit/types": "^14.1.0", "@octokit/types": "^14.1.0",
"@rollup/plugin-commonjs": "^28.0.2", "@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.0", "@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2", "@rollup/plugin-typescript": "^12.1.4",
"@types/jest": "^29.5.14", "@types/jest": "^29.5.14",
"@types/node": "^22.13.4", "@types/node": "^22.16.4",
"@typescript-eslint/eslint-plugin": "^8.24.1", "@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.24.1", "@typescript-eslint/parser": "^8.24.1",
"eslint": "^9.20.1", "eslint": "^9.31.0",
"eslint-config-prettier": "^10.0.1", "eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^3.8.2", "eslint-import-resolver-typescript": "^3.8.2",
"eslint-plugin-import": "^2.31.0", "eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^28.11.0", "eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3", "eslint-plugin-prettier": "^5.5.1",
"jest": "^29.7.0", "jest": "^29.7.0",
"make-coverage-badge": "^1.2.0", "make-coverage-badge": "^1.2.0",
"prettier": "^3.5.1", "prettier": "^3.6.2",
"prettier-eslint": "^16.3.0", "prettier-eslint": "^16.4.2",
"rollup": "^4.34.8", "rollup": "^4.45.1",
"ts-jest": "^29.2.5", "ts-jest": "^29.4.0",
"ts-jest-resolver": "^2.0.1", "ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"typescript": "^5.7.3" "typescript": "^5.8.3"
}, },
"optionalDependencies": { "optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*" "@rollup/rollup-linux-x64-gnu": "*"

View File

@@ -6,6 +6,7 @@
"declarationMap": false, "declarationMap": false,
"esModuleInterop": true, "esModuleInterop": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["ES2022"], "lib": ["ES2022"],
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext",