Skip to content

Commit 91799b9

Browse files
deps: skuba 13.1.0 (#196)
* deps: skuba 13.1.0 * Run `skuba format` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: skuba <[email protected]>
1 parent 58b3d83 commit 91799b9

File tree

5 files changed

+591
-101
lines changed

5 files changed

+591
-101
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@types/node": "^22.13.14",
2121
"dotenv": "16.6.1",
2222
"esbuild": "~0.25.0",
23-
"skuba": "13.0.3"
23+
"skuba": "13.1.0"
2424
},
2525
"packageManager": "[email protected]",
2626
"engines": {

packages/hooks/src/lambda.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ export const isLambdaHook = (
4242
): boolean =>
4343
Boolean(
4444
Object.keys(event).length === 0 &&
45-
typeof clientContext?.Custom?.['user-agent'] === 'string' &&
46-
clientContext.Custom['user-agent'].startsWith(USER_AGENT_PREFIX),
45+
typeof clientContext?.Custom?.['user-agent'] === 'string' &&
46+
clientContext.Custom['user-agent'].startsWith(USER_AGENT_PREFIX),
4747
);

packages/infra/src/handlers/process/lambda/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { z } from 'zod';
1+
import * as z from 'zod';
22

33
export const lambdaFunctionProperties = z.object({
44
Name: z.string(),

0 commit comments

Comments
 (0)