Skip to content

Commit

Permalink
docs(lambda-nodejs): Example for esbuild missing comma in property (a…
Browse files Browse the repository at this point in the history
…ws#13520)

----
Example under esbuild appears to be missing comma.

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
oliver-bowman authored and hollanddd committed Aug 26, 2021
1 parent 6f20a29 commit 562b51d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-lambda-nodejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ new lambda.NodejsFunction(this, 'my-handler', {
},
logLevel: LogLevel.SILENT, // defaults to LogLevel.WARNING
keepNames: true, // defaults to false
tsconfig: 'custom-tsconfig.json' // use custom-tsconfig.json instead of default,
tsconfig: 'custom-tsconfig.json', // use custom-tsconfig.json instead of default,
metafile: true, // include meta file, defaults to false
banner : '/* comments */', // by default no comments are passed
footer : '/* comments */', // by default no comments are passed
Expand Down

0 comments on commit 562b51d

Please sign in to comment.