Skip to content

Commit

Permalink
chore(deps): update dependency typescript to v5 (#166)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency typescript to v5

* fix(deps): fix tests

* fix(app): fix tests

* fix(app): fix tests

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Quentin Laffont <quentin@flexper.fr>
  • Loading branch information
renovate[bot] and Quentin Laffont authored Apr 7, 2023
1 parent 9c1cbc7 commit cebca5b
Show file tree
Hide file tree
Showing 4 changed files with 1,011 additions and 76 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['12.x', '14.x', '16.x']
node: ['16.x', '18.x']
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
Expand Down
14 changes: 11 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test": "jest",
"lint": "eslint src test --fix",
"prepare": "tsdx build",
"size": "size-limit",
Expand Down Expand Up @@ -54,11 +54,16 @@
"coverageReporters": [
"lcov"
],
"preset": "ts-jest"
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"./node_modules/"
]
},
"devDependencies": {
"@jest/globals": "29.5.0",
"@size-limit/preset-small-lib": "8.2.4",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"eslint": "8.37.0",
Expand All @@ -67,11 +72,14 @@
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"np": "7.7.0",
"prettier": "2.8.7",
"size-limit": "8.2.4",
"ts-jest": "^29.1.0",
"tsdx": "0.14.1",
"tslib": "2.5.0",
"typescript": "4.9.5"
"typescript": "5.0.3"
}
}
Loading

0 comments on commit cebca5b

Please sign in to comment.