Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
382 changes: 191 additions & 191 deletions .yarn/releases/yarn-4.11.0.cjs → .yarn/releases/yarn-4.12.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.11.0.cjs
yarnPath: .yarn/releases/yarn-4.12.0.cjs
131,786 changes: 65,582 additions & 66,204 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

112 changes: 17 additions & 95 deletions dist/licenses.txt

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

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,29 +23,29 @@
],
"author": "jamacku@redhat.com",
"license": "MIT",
"packageManager": "yarn@4.11.0",
"packageManager": "yarn@4.12.0",
"type": "module",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/core": "3.0.0",
"@octokit/core": "7.0.6",
"@octokit/plugin-throttling": "11.0.3",
"@octokit/rest": "22.0.1",
"@octokit/types": "16.0.0",
"@probot/octokit-plugin-config": "4.1.0",
"bugzilla": "3.1.4",
"bugzilla": "3.1.5",
"deepmerge": "4.3.1",
"jira.js": "5.2.2",
"zod": "4.1.12"
"jira.js": "5.3.1",
"zod": "4.3.6"
},
"devDependencies": {
"@actions/github": "6.0.1",
"@actions/github": "9.0.0",
"@total-typescript/ts-reset": "0.6.1",
"@types/node": "24.10.1",
"@types/node": "25.3.5",
"@vercel/ncc": "0.38.4",
"@vitest/coverage-v8": "4.0.12",
"prettier": "3.6.2",
"@vitest/coverage-v8": "4.0.18",
"prettier": "3.8.1",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"vitest": "4.0.12"
"vitest": "4.0.18"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["src/"], /* Specifies a list of glob patterns that match files to be included in compilation. If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. Requires TypeScript version 2.0 or later. */
"exclude": ["node_modules/", "**/*.test.ts", "jest.config.ts"], /* Specifies a list of files to be excluded from compilation. The 'exclude' property only affects the files included via the 'include' property and not the 'files' property. Glob patterns require TypeScript version 2.0 or later. */
"exclude": ["node_modules/", "**/*.test.ts", "vitest.config.ts"], /* Specifies a list of files to be excluded from compilation. The 'exclude' property only affects the files included via the 'include' property and not the 'files' property. Glob patterns require TypeScript version 2.0 or later. */
"compileOnSave": true /* Enable Compile-on-Save for this project. */
}
5 changes: 0 additions & 5 deletions vite.config.ts

This file was deleted.

11 changes: 11 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { configDefaults, defineConfig } from 'vitest/config';

export default defineConfig({
test: {
dir: './test',
exclude: [...configDefaults.exclude],
coverage: {
include: ['src/**/*.ts'],
},
},
});
Loading