upgrade octokit dependencies

This commit is contained in:
Lokesh Gopu
2026-01-22 11:59:59 -05:00
parent ee91adfbc4
commit f61ae48376
9 changed files with 217 additions and 225 deletions
+11 -1
View File
@@ -5,7 +5,17 @@ module.exports = {
testEnvironment: 'node',
testMatch: ['**/__tests__/*.test.ts'],
transform: {
'^.+\\.ts$': ['ts-jest', {isolatedModules: true, diagnostics: {warnOnly: true}}]
'^.+\\.(ts|js)$': ['ts-jest', {
isolatedModules: true,
diagnostics: {warnOnly: true},
tsconfig: {
allowJs: true,
esModuleInterop: true
}
}]
},
transformIgnorePatterns: [
'/node_modules/(?!(@octokit|universal-user-agent|before-after-hook)/)'
],
verbose: true
}