Skip to content

Commit

Permalink
⬆️ upgrade [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
cermakjiri committed Nov 15, 2024
1 parent 4ee1a63 commit 5a977ff
Show file tree
Hide file tree
Showing 6 changed files with 1,268 additions and 1,928 deletions.
18 changes: 10 additions & 8 deletions jest.config.js → jest.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
module.exports = {
/**
* @type {import('ts-jest').JestConfigWithTsJest}
*/
export default {
testEnvironment: "node",
moduleFileExtensions: ["ts", "js", "json"],
testMatch: ["<rootDir>/packages/*/src/**/__tests__/**/*.test.ts"],
transform: {
"\\.ts$": "ts-jest",
"\\.ts$": [
"ts-jest",
{
diagnostics: { warnOnly: true },
},
],
},
transformIgnorePatterns: ["node_modules/"],
coverageReporters: ["lcov", "text-summary"],
collectCoverageFrom: ["packages/*/src/**/*.ts"],
coveragePathIgnorePatterns: ["/templates/"],
Expand All @@ -17,10 +24,5 @@ module.exports = {
statements: 100,
},
},
globals: {
"ts-jest": {
diagnostics: { warnOnly: true },
},
},
resolver: "<rootDir>/test-utils/resolver",
};
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
"typescript": "~4.6"
},
"dependencies": {
"@types/jest": "^26.0.13",
"jest": "^26.4.2",
"@types/jest": "29.5.14",
"jest": "29.7.0",
"lerna": "4",
"ts-jest": "^26.3.0"
"ts-jest": "29.2.5"
},
"resolutions": {
"rxjs": "6",
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
"open": "^7.2.1",
"ora": "^5.0.0",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"tslib": "^1",
"ts-node": "9.1.1",
"tslib": "1.14.1",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/jest-when": "^2.7.2",
"@types/node": "^10",
"jest-when": "^3.0.1"
"@types/jest-when": "3.5.5",
"@types/node": "20.14.11",
"jest-when": "3.6.0"
},
"files": [
"/bin",
Expand Down
4 changes: 3 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"name": "Lukas Horak",
"email": "[email protected]"
},
"type": "module",
"bugs": "https://github.com/AckeeCZ/lokse/issues",
"dependencies": {
"@types/bluebird": "^3.5.32",
Expand All @@ -20,7 +21,8 @@
"google-auth-library": "9.15.0",
"google-spreadsheet": "4.1.4",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4"
"mkdirp": "^1.0.4",
"typescript": "~4.6"
},
"devDependencies": {
"@types/node": "20.14.11"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"target": "es2017",
"preserveSymlinks": true
},
}
}
Loading

0 comments on commit 5a977ff

Please sign in to comment.