aws-lambda-nodejs-esbuild icon indicating copy to clipboard operation
aws-lambda-nodejs-esbuild copied to clipboard

λ💨 AWS CDK Construct to bundle JavaScript and TypeScript AWS lambdas using extremely fast esbuild.

Results 3 aws-lambda-nodejs-esbuild issues
Sort by recently updated
recently updated
newest added

The command currently used by the Yarn packager is `yarn install --frozen-lockfile --non-interactive`, which isn't compatible with Yarn 2. For reference, the Yarn 2 command would be `yarn install --immutable...

Using a custom asset hash with the Function construct is super useful for saving on some time and resources - if we could pass through the two options to Code.fromAsset...

With structure like: ``` -root --XYZ ---lambdas ----lambda1 -----src ------index.ts ----lambda2 -----src ------index.ts ``` , when trying to deploy both lambdas in same stack like for example: ``` const lambda1...