Lambdasync 3.2.1
Refactored deploy process.
Lambdasync no longer zips up the whole root directory and sends it up to the clouds. Instead it creates a ./.lambdasync/deploy directory where it installs Node modules with the --production flag and then copies over the files to deploy.
This enables users to configure ignore and include glob patters in their package.json which will tell Lambdasync which files to copy over for deploy and which to ignore.
Configurable entry path
On request an entry field has been added which let's you configure the file that exports your handler-function. This is useful if you are for example transpiling your source code and your entry file is dist/index.js instead of the default index.js.