We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02c69e commit eba09eeCopy full SHA for eba09ee
1 file changed
lib/database/index.ts
@@ -47,7 +47,7 @@ function hasVpc(
47
*/
48
function computeLambdaCodeHash(
49
basePath: string,
50
- buildArgs: { [key: string]: string }
+ buildArgs: { [key: string]: string },
51
): string {
52
const hash = crypto.createHash("sha256");
53
@@ -64,7 +64,7 @@ function computeLambdaCodeHash(
64
// Hash build arguments in sorted order for consistency
65
const sortedArgs = Object.keys(buildArgs)
66
.sort()
67
- .map(key => `${key}=${buildArgs[key]}`)
+ .map((key) => `${key}=${buildArgs[key]}`)
68
.join(",");
69
hash.update(`buildArgs:${sortedArgs}`);
70
0 commit comments