We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The list of excluded packages is a union of whatever the user supplies and ['aws-sdk'], which means you can't not exclude aws-sdk.
['aws-sdk']
const exclude = union(props.exclude || [], ['aws-sdk']);
As Lambda doesn't bundle the latest version of the SDK this can be a problem if you depend on a newer SDK version. Ideally in this scenario I'd just bundle aws-sdk until the Lambda version is updated.
The text was updated successfully, but these errors were encountered:
@jagregory yes it does make sense as we discussed with @jogold in this thread I Will make the fix Thank you for your input
Sorry, something went wrong.
e34480c
🎉 This issue has been resolved in version 1.1.5 🎉
The release is available on:
Your semantic-release bot 📦🚀
No branches or pull requests
The list of excluded packages is a union of whatever the user supplies and
['aws-sdk']
, which means you can't not exclude aws-sdk.As Lambda doesn't bundle the latest version of the SDK this can be a problem if you depend on a newer SDK version. Ideally in this scenario I'd just bundle aws-sdk until the Lambda version is updated.
The text was updated successfully, but these errors were encountered: