Skip to content

Commit

Permalink
Update dependencies (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad authored Jun 6, 2023
1 parent b73421a commit 7c2155d
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]

steps:
- name: Checkout Repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]

steps:
- name: Checkout Repository
Expand Down
19 changes: 12 additions & 7 deletions jest.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,21 @@
"moduleFileExtensions": ["ts", "js", "json"],
"testMatch": ["<rootDir>/test/**/*.(spec|test).ts|tsx"],
"transform": {
"^.+\\.ts$": "ts-jest"
"^.+\\.ts$": [
"ts-jest",
{
"diagnostics": false
}
]
},
"testEnvironment": "node",
"reporters": ["default"],
"coveragePathIgnorePatterns": ["<rootDir>/node_modules/", "<rootDir>/coverage/", "<rootDir>/test/utils/", "<rootDir>/index.ts"],
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/coverage/",
"<rootDir>/test/utils/",
"<rootDir>/index.ts"
],
"coverageThreshold": {
"global": {
"statements": 100,
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"croner": "^5.3.5",
"eslint": "^8.30.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine-core": "^4.5.0",
"jest": "^28.1.3",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"jasmine-core": "^4.6.0",
"jest": "^29.5.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-typescript": "^5.5.3",
"karma-typescript": "^5.5.4",
"prettier": "^2.8.1",
"ts-jest": "^28.0.8",
"typescript": "4.9.4"
"ts-jest": "^29.1.0",
"typescript": "4.9.5"
},
"homepage": "https://github.com/kibertoad/toad-scheduler",
"repository": {
Expand Down

0 comments on commit 7c2155d

Please sign in to comment.