Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dgreif committed Sep 18, 2021
1 parent 1c4afd1 commit 719c67d
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 57 deletions.
98 changes: 49 additions & 49 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@
"node": ">=12"
},
"devDependencies": {
"@types/node": "16.4.13",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"@types/node": "16.9.2",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"conventional-github-releaser": "3.1.5",
"dotenv": "10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-prettier": "4.0.0",
"homebridge": "1.3.4",
"prettier": "^2.3.2",
"prettier": "^2.4.1",
"standard-version": "^9.3.1",
"typescript": "4.3.5"
"typescript": "4.4.3"
},
"dependencies": {},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/channel-accessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export class ChannelAccessory {
}

context.currentValue = targetValue as number
} catch (e) {
} catch (e: any) {
targetPosition.updateValue(context.currentValue)

logError(
Expand Down
2 changes: 1 addition & 1 deletion src/my-link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export class MyLink {
)

return channelInfos.map((info) => new Channel(info, this))
} catch (e) {
} catch (e: any) {
logError('Failed to get channels')
logError(e.message)

Expand Down

0 comments on commit 719c67d

Please sign in to comment.