Skip to content

Commit

Permalink
Node deps upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
richarddavison committed Nov 27, 2023
1 parent d028544 commit d45ce40
Show file tree
Hide file tree
Showing 5 changed files with 1,608 additions and 1,198 deletions.
14 changes: 7 additions & 7 deletions example/functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
"build": "node build.mjs"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "3.441.0",
"@aws-sdk/client-s3": "3.441.0",
"@aws-sdk/client-dynamodb": "3.458.0",
"@aws-sdk/client-s3": "3.458.0",
"aws-sdk": "2.1503.0",
"esbuild-css-modules-plugin": "3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"aws-sdk": "2.1488.0"
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/react": "18.2.35",
"@types/react-dom": "18.2.14",
"esbuild": "0.19.5"
"@types/react": "18.2.38",
"@types/react-dom": "18.2.17",
"esbuild": "0.19.8"
}
}
4 changes: 4 additions & 0 deletions example/infrastructure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"scripts": {
"synth": "cdk synth",
"predeploy": "cdk bootstrap",
"deploy": "cdk deploy",
"hotswap": "cdk deploy --hotswap"
},
Expand All @@ -17,5 +18,8 @@
"esbuild": "0.19.5",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"dependencies": {
"aws-sdk": "2.1503.0"
}
}
2 changes: 1 addition & 1 deletion example/infrastructure/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ const main = async () => {
const llrtLayer = new aws_lambda.LayerVersion(stack, "LlrtArmLayer", {
code: aws_lambda.Code.fromAsset("../../llrt-lambda-arm64.zip"),
compatibleRuntimes: [
aws_lambda.Runtime.NODEJS_14_X,
aws_lambda.Runtime.NODEJS_16_X,
aws_lambda.Runtime.NODEJS_18_X,
aws_lambda.Runtime.NODEJS_LATEST,
aws_lambda.Runtime.PROVIDED_AL2,
],
compatibleArchitectures: [aws_lambda.Architecture.ARM_64],
Expand Down
Loading

0 comments on commit d45ce40

Please sign in to comment.