You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 19, 2023. It is now read-only.
According to aws documentation, aws-sdk is included in lambda container : https://docs.aws.amazon.com/lambda/latest/dg/lambda-nodejs.html
But your library also includes aws-sdk in dependencies.
Is it mandatory ? My package is 70mb larger since I use your package :-/
Can you move dependency in optionnalDependency since it's already included in lambda node runtime ?
Edit : It's seems dependency is in peerDependency but npm8 install peerdependency auto.
Can you add : "peerDependenciesMeta": { "aws-sdk": { "optional": true } }
Thank you
The text was updated successfully, but these errors were encountered:
Hello,
According to aws documentation, aws-sdk is included in lambda container :
https://docs.aws.amazon.com/lambda/latest/dg/lambda-nodejs.html
But your library also includes aws-sdk in dependencies.
Is it mandatory ? My package is 70mb larger since I use your package :-/
Can you move dependency in optionnalDependency since it's already included in lambda node runtime ?
Edit : It's seems dependency is in peerDependency but npm8 install peerdependency auto.
Can you add :
"peerDependenciesMeta": { "aws-sdk": { "optional": true } }
Thank you
The text was updated successfully, but these errors were encountered: