Skip to content

Instantly share code, notes, and snippets.

@michaelwittig
Created October 11, 2023 07:47
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Build code for inline CloudFormation Lambda functions (can be used with CDK)
function zipFile(lambdaFile) {
return esbuild.buildSync({
entryPoints: [`lambda/${lambdaFile}`], // your path might be different
external: ['@aws-sdk/*'],
target: ['node18'],
platform: 'node',
bundle: true,
write: false,
treeShaking: true
}).outputFiles[0].text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment