Currently the index.js exports the deploy function which in its turn requires the aws-sdk.
This creates quite a (unnecessarily) big package to deploy and confuses dependency resolution tools (like Webpack).
Is there a way to just use the handler factory without requiring the aws-sdk?
First, thank you for this great library!
Currently the
index.js
exports thedeploy
function which in its turn requires theaws-sdk
. This creates quite a (unnecessarily) big package to deploy and confuses dependency resolution tools (like Webpack).Is there a way to just use the handler factory without requiring the
aws-sdk
?