Skip to content

Commit 7c2155d

Browse files
authored
Update dependencies (#182)
1 parent b73421a commit 7c2155d

5 files changed

Lines changed: 27 additions & 22 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [12.x, 14.x, 16.x, 18.x]
17+
node-version: [14.x, 16.x, 18.x, 20.x]
1818

1919
steps:
2020
- uses: actions/checkout@v3

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [16.x]
17+
node-version: [20.x]
1818

1919
steps:
2020
- name: Checkout Repository

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
node-version: [16.x]
20+
node-version: [20.x]
2121

2222
steps:
2323
- name: Checkout Repository

jest.config.json

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,21 @@
22
"moduleFileExtensions": ["ts", "js", "json"],
33
"testMatch": ["<rootDir>/test/**/*.(spec|test).ts|tsx"],
44
"transform": {
5-
"^.+\\.ts$": "ts-jest"
5+
"^.+\\.ts$": [
6+
"ts-jest",
7+
{
8+
"diagnostics": false
9+
}
10+
]
611
},
712
"testEnvironment": "node",
813
"reporters": ["default"],
9-
"coveragePathIgnorePatterns": ["<rootDir>/node_modules/", "<rootDir>/coverage/", "<rootDir>/test/utils/", "<rootDir>/index.ts"],
10-
"globals": {
11-
"ts-jest": {
12-
"diagnostics": false
13-
}
14-
},
14+
"coveragePathIgnorePatterns": [
15+
"<rootDir>/node_modules/",
16+
"<rootDir>/coverage/",
17+
"<rootDir>/test/utils/",
18+
"<rootDir>/index.ts"
19+
],
1520
"coverageThreshold": {
1621
"global": {
1722
"statements": 100,

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@
2121
"prepublishOnly": "npm run build"
2222
},
2323
"devDependencies": {
24-
"@types/jest": "^28.1.8",
25-
"@types/node": "^18.11.17",
26-
"@typescript-eslint/eslint-plugin": "^5.47.0",
27-
"@typescript-eslint/parser": "^5.47.0",
24+
"@types/jest": "^29.5.2",
25+
"@types/node": "^18.16.16",
26+
"@typescript-eslint/eslint-plugin": "^5.59.9",
27+
"@typescript-eslint/parser": "^5.59.9",
2828
"croner": "^5.3.5",
29-
"eslint": "^8.30.0",
29+
"eslint": "^8.42.0",
3030
"eslint-config-prettier": "^8.5.0",
3131
"eslint-plugin-prettier": "^4.2.1",
32-
"jasmine-core": "^4.5.0",
33-
"jest": "^28.1.3",
34-
"karma": "^6.4.1",
35-
"karma-chrome-launcher": "^3.1.1",
32+
"jasmine-core": "^4.6.0",
33+
"jest": "^29.5.0",
34+
"karma": "^6.4.2",
35+
"karma-chrome-launcher": "^3.2.0",
3636
"karma-jasmine": "^5.1.0",
37-
"karma-typescript": "^5.5.3",
37+
"karma-typescript": "^5.5.4",
3838
"prettier": "^2.8.1",
39-
"ts-jest": "^28.0.8",
40-
"typescript": "4.9.4"
39+
"ts-jest": "^29.1.0",
40+
"typescript": "4.9.5"
4141
},
4242
"homepage": "https://github.com/kibertoad/toad-scheduler",
4343
"repository": {

0 commit comments

Comments
 (0)