Skip to content

Commit eba09ee

Browse files
committed
chore: formatting fixes
1 parent c02c69e commit eba09ee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/database/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function hasVpc(
4747
*/
4848
function computeLambdaCodeHash(
4949
basePath: string,
50-
buildArgs: { [key: string]: string }
50+
buildArgs: { [key: string]: string },
5151
): string {
5252
const hash = crypto.createHash("sha256");
5353

@@ -64,7 +64,7 @@ function computeLambdaCodeHash(
6464
// Hash build arguments in sorted order for consistency
6565
const sortedArgs = Object.keys(buildArgs)
6666
.sort()
67-
.map(key => `${key}=${buildArgs[key]}`)
67+
.map((key) => `${key}=${buildArgs[key]}`)
6868
.join(",");
6969
hash.update(`buildArgs:${sortedArgs}`);
7070

0 commit comments

Comments
 (0)