flipscholtz
flipscholtz
When deleting a batch of SQS messages, the Batch ID's have to be unique. If not, a '[BatchEntryIdsNotDistinct](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sqs/modules/batchentryidsnotdistinct.html)' error is returned and none of the messages are deleted. Setting this...
**Describe the bug** When a child of an 'external' package appears in the root of the packager output tree such as `yarn list --json`, it gets filtered out [here](https://github.com/floydspace/serverless-esbuild/blob/ef5b2d14f66efb64093b1e0997cb64aa52855647/src/helper.ts#L117C7-L117C7) after...
feat: support non-semver versions in the yarn packager, for example 'github:' references, when their parent package is marked 'external'. Issue [here](https://github.com/floydspace/serverless-esbuild/issues/477) - Don't assume the format `@` . Use a...
**Describe the bug** The yarn packager [assumes](https://github.com/floydspace/serverless-esbuild/blob/ef5b2d14f66efb64093b1e0997cb64aa52855647/src/packagers/yarn.ts#L26C2-L26C2) the format `@` , where everything before the last `@` is the name, and after is the version. This causes a problem for...
Fix: Don't filter out children of external dependencies. isRootDep was not being checked during recursiveFind. The preceding comment says `// only for root level dependencies` so it seems the intention...