Skip to content

Commit

Permalink
fix: update dependency typescript to v4.4.2
Browse files Browse the repository at this point in the history
Closes #185
  • Loading branch information
coderbyheart committed Aug 30, 2021
1 parent b5d6da2 commit 481a470
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 17 deletions.
4 changes: 3 additions & 1 deletion lambda/log-group-cleaner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ export const handler = async (): Promise<void> => {
)
} catch (err) {
console.debug(
`Failed to delete log group ${logGroupName}: ${err.message}`,
`Failed to delete log group ${logGroupName}: ${
(err as Error).message
}`,
)
}
}),
Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@nordicsemiconductor/asset-tracker-cloud-code-style": "9.1.0",
"@nordicsemiconductor/eslint-config-asset-tracker-cloud-typescript": "8.1.0",
"@types/glob": "7.1.4",
"@types/node": "15.12.2",
"@types/node": "16.7.6",
"@types/yazl": "2.4.2",
"cdk": "1.120.0",
"eslint": "7.32.0",
Expand All @@ -44,7 +44,7 @@
"lint-staged": "11.1.2",
"pinst": "2.1.6",
"prettier": "2.3.2",
"typescript": "4.3.5",
"typescript": "4.4.2",
"yazl": "2.5.1"
},
"lint-staged": {
Expand Down

0 comments on commit 481a470

Please sign in to comment.