Skip to content

Commit df4fa4d

Browse files
committed
fix: update dependencies
Closes #35
1 parent 8e819cc commit df4fa4d

File tree

8 files changed

+47
-24
lines changed

8 files changed

+47
-24
lines changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
"license": "BSD-3-Clause",
3434
"devDependencies": {
3535
"@bifravst/eslint-config-typescript": "6.1.13",
36-
"@bifravst/prettier-config": "1.0.4",
36+
"@bifravst/prettier-config": "1.1.0",
3737
"@commitlint/config-conventional": "19.2.2",
3838
"@types/aws-lambda": "8.10.143",
39-
"@types/node": "20.14.14",
39+
"@types/node": "22.1.0",
4040
"husky": "9.1.4",
4141
"tsx": "4.17.0"
4242
},

src/aProblem.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { describe, it } from 'node:test'
1+
import { Context } from '@hello.nrfcloud.com/proto/hello'
22
import assert from 'node:assert/strict'
3+
import { describe, it } from 'node:test'
34
import { aProblem } from './aProblem.js'
4-
import { Context } from '@hello.nrfcloud.com/proto/hello'
55

66
void describe('aProblem()', () => {
77
void it('should return a problem response', () =>

src/aProblem.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { APIGatewayProxyStructuredResultV2 } from 'aws-lambda'
2-
import type { Static } from '@sinclair/typebox'
31
import { Context, type ProblemDetail } from '@hello.nrfcloud.com/proto/hello'
2+
import type { Static } from '@sinclair/typebox'
3+
import type { APIGatewayProxyStructuredResultV2 } from 'aws-lambda'
44

55
export const aProblem = (
66
problem: Omit<Static<typeof ProblemDetail>, '@context'>,

src/aResponse.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { describe, it } from 'node:test'
21
import assert from 'node:assert/strict'
2+
import { describe, it } from 'node:test'
33
import { aResponse } from './aResponse.js'
44

55
void describe('aResponse()', () => {

src/aResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { APIGatewayProxyStructuredResultV2 } from 'aws-lambda'
21
import type { HttpStatusCode } from '@hello.nrfcloud.com/proto/hello'
2+
import type { APIGatewayProxyStructuredResultV2 } from 'aws-lambda'
33

44
export const aResponse = (
55
status: HttpStatusCode,

src/addVersionHeader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import type { MiddlewareObj } from '@middy/core'
12
import type {
23
APIGatewayProxyEventV2,
34
APIGatewayProxyStructuredResultV2,
45
} from 'aws-lambda'
5-
import type { MiddlewareObj } from '@middy/core'
66

77
export const addVersionHeader = (
88
version: string,

src/corsOPTIONS.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import type { MiddlewareObj, Request } from '@middy/core'
12
import type {
23
APIGatewayProxyEventV2,
34
APIGatewayProxyStructuredResultV2,
45
} from 'aws-lambda'
5-
import type { MiddlewareObj, Request } from '@middy/core'
66
import { corsHeaders } from './corsHeaders.js'
77

88
export const corsOPTIONS = (

0 commit comments

Comments
 (0)