serverless-esbuild
serverless-esbuild copied to clipboard
💨 A Serverless framework plugin to bundle JavaScript and TypeScript with extremely fast esbuild
**Describe the bug** It seems that if this plugin encounters any esbuild error, it will hang. This is particularly bad in a CI env where the stdout may not be...
**Is your feature request related to a problem? Please describe.** We are trying to setup Datadog in our serverless project. We are also using serverless-esbuild. An issue we are encountering...
addresses https://github.com/floydspace/serverless-esbuild/issues/312
Hello, I've encountered that weirdly dependency injection breaks(Nest.js project) when attempting to use `serverless-esbuild` in local environment. However when attempting to use `serverless-webpack` it's all working fine. [email protected] [email protected] [email protected]...
**Describe the bug** I want to use ES modules and exclude @aws-sdk libraries from the bundle since those libraries are built-in by default on AWS Lambda **To Reproduce** Steps to...
When using serverless-offline and making changes to files the memory usage of the esbuild process seems to grow exponentially. I start out with about 1 GB of ram usage and...
**Is your feature request related to a problem? Please describe.** When using Lambda custom runtimes, I'd like to use the plugin to bundle my js but the custom runtimes (`provided`...
**Describe the bug** There appears to be a memory use regression in v1.48.1, which is presumably a result of the `disposeContext` behavior [here](https://github.com/floydspace/serverless-esbuild/commit/36ef92eab5485c9f6dc2ea222c97cae0330f3858). When attempting to run `serverless package` locally...
**Describe the bug** After running serverless deploy, the lambda is indeed deployed to LocalStack but the process is still running and stuck on: `Need a faster logging experience than CloudWatch?...
## Problem Currently, you can only build for runtimes at the provider level. ```yml provider: name: aws region: sa-east-1 runtime: nodejs18.x functions: hello-world: handler: index.handler ``` If I want to...