Skip to content

Commit 080073c

Browse files
committed
fix: update dependencies
Closes #123 Closes #116
1 parent 6c721c3 commit 080073c

File tree

5 files changed

+29
-29
lines changed

5 files changed

+29
-29
lines changed

package-lock.json

Lines changed: 23 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"author": "Nordic Semiconductor ASA | nordicsemi.no",
3333
"license": "BSD-3-Clause",
3434
"devDependencies": {
35-
"@bifravst/eslint-config-typescript": "6.1.18",
35+
"@bifravst/eslint-config-typescript": "6.1.19",
3636
"@bifravst/prettier-config": "1.1.1",
3737
"@commitlint/config-conventional": "19.6.0",
3838
"@types/aws-lambda": "8.10.145",
@@ -87,7 +87,7 @@
8787
"@aws-sdk/client-ssm": "^3.699.0",
8888
"@aws-sdk/util-dynamodb": "^3.699.0",
8989
"@bifravst/aws-ssm-settings-helpers": "^1.2.71",
90-
"@hello.nrfcloud.com/proto": "^15.3.21",
91-
"@sinclair/typebox": "^0.33.22"
90+
"@hello.nrfcloud.com/proto": "^15.3.22",
91+
"@sinclair/typebox": "^0.34.8"
9292
}
9393
}

src/api/getAccountInfo.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import assert from 'node:assert/strict'
22
import { describe, it } from 'node:test'
33
import { check, objectMatching } from 'tsmatchers'
44
import { getAccountInfo } from './getAccountInfo.js'
5-
import APIresponse from './test-data/account.json'
5+
import APIresponse from './test-data/account.json' assert { type: 'json' }
66

77
void describe('getAccountInfo()', () => {
88
void it('return the account info', async () => {

src/api/getCurrentMonthlyCosts.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import assert from 'node:assert/strict'
22
import { describe, it } from 'node:test'
33
import { getCurrentMonthlyCosts } from './getCurrentMonthlyCosts.js'
4-
import APIresponse from './test-data/account.json'
4+
import APIresponse from './test-data/account.json' assert { type: 'json' }
55

66
void describe('getCurrentMonthlyCosts()', () => {
77
void it("return the current month's total cost for an account", async () => {

src/api/getLocationHistory.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import assert from 'node:assert/strict'
22
import { describe, it } from 'node:test'
33
import { aString, arrayMatching, check, objectMatching } from 'tsmatchers'
44
import { getLocationHistory } from './getLocationHistory.js'
5-
import APIresponse from './test-data/location.json'
5+
import APIresponse from './test-data/location.json' assert { type: 'json' }
66

77
await describe('getLocationHistory()', async () => {
88
await it('return the location history', async () => {

0 commit comments

Comments
 (0)