Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed May 31, 2024
1 parent 405b7a4 commit 0e0ffda
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 26 deletions.
2 changes: 1 addition & 1 deletion convert/converter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ void describe('convert()', () => {
<ButtonPress_14220>{
ObjectID: LwM2MObjectID.ButtonPress_14220,
ObjectVersion: '1.0',
ObjectInstanceID: 1,
Resources: {
0: 1,
99: BUTTON.ts,
},
},
Expand Down
11 changes: 7 additions & 4 deletions convert/converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,13 @@ const converters: Array<
[
isAppId('BUTTON'),
(data, ts) =>
toInstance(LwM2MObjectID.ButtonPress_14220, {
0: parseInt(data as string, 10),
99: ts,
}),
toInstance(
LwM2MObjectID.ButtonPress_14220,
{
99: ts,
},
parseInt(data as string, 10),
),
],
]

Expand Down
36 changes: 18 additions & 18 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@bifravst/eslint-config-typescript": "6.1.1",
"@bifravst/prettier-config": "1.0.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "20.12.13",
"@types/node": "20.12.14",
"aws-cdk-lib": "2.143.1",
"cdk": "2.143.1",
"check-node-version": "4.2.1",
Expand Down Expand Up @@ -75,8 +75,8 @@
"prettier": "@bifravst/prettier-config",
"dependencies": {
"@aws-lambda-powertools/metrics": "2.1.1",
"@hello.nrfcloud.com/lambda-helpers": "1.1.32",
"@hello.nrfcloud.com/proto-map": "10.0.4",
"@hello.nrfcloud.com/lambda-helpers": "1.1.33",
"@hello.nrfcloud.com/proto-map": "11.0.0",
"@middy/core": "5.3.5"
}
}

0 comments on commit 0e0ffda

Please sign in to comment.