Skip to content

Commit

Permalink
chore(deps-dev): Bump typescript from 4.3.5 to 4.9.4 (#414)
Browse files Browse the repository at this point in the history
* chore(deps-dev): Bump typescript from 4.3.5 to 4.9.4

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.3.5 to 4.9.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v4.3.5...v4.9.4)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: upgrade workflow node-js version

* chore: update typescript version

* chore: fix build issues

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ivan Vilanculo <[email protected]>
  • Loading branch information
dependabot[bot] and Ivan Vilanculo authored Jan 17, 2023
1 parent 8f23dcb commit 4a7ff6a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x
- name: restore cache
uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"supertest": "^6.0.1",
"ts-jest": "^26.4.1",
"ts-node": "^10.1.0",
"typescript": "^4.0.3"
"typescript": "^4.9.4"
},
"dependencies": {
"body-parser": "^1.19.0",
Expand Down
2 changes: 1 addition & 1 deletion src/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function createRoutes(iocContainer: Container): Router {
res.setHeader('Content-Type', 'application/pdf')
res.send(pdf).end()
} catch (e) {
logger.error(e.message, e)
logger.error((e as Error).message)
res
.status(500)
.json({
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5907,10 +5907,10 @@ typedarray-to-buffer@^3.1.5:
dependencies:
is-typedarray "^1.0.0"

typescript@^4.0.3:
version "4.3.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4"
integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==
typescript@^4.9.4:
version "4.9.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==

uglify-js@^3.1.4:
version "3.13.4"
Expand Down

0 comments on commit 4a7ff6a

Please sign in to comment.