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
Since AWS Lambda start time and overall request speed correlates directly with upload bundle size, it would be super worth it to investigate means to shrink the uploaded bundle. This could be a bit tricky due to:
A lot of our ideas involved digging through and modifying dependencies, which is dicey since new downloads cause those to be reinstalled.
claudia automatically does an npm install when it bundles the project which would undo local changes to dependencies.
We'd have to make changes in claudia's code since that's where bundling/uploading takes place.
Some tools include hooks that let you provide your own script for producing a zipfile
The text was updated successfully, but these errors were encountered:
Since AWS Lambda start time and overall request speed correlates directly with upload bundle size, it would be super worth it to investigate means to shrink the uploaded bundle. This could be a bit tricky due to:
claudia
automatically does annpm install
when it bundles the project which would undo local changes to dependencies.claudia
's code since that's where bundling/uploading takes place.The text was updated successfully, but these errors were encountered: