Skip to content

Lambdasync 3.2.1

Choose a tag to compare

@fanderzon fanderzon released this 16 Sep 10:28
· 19 commits to master since this release

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.

Updated Lambda Node.js version to 6.10

Fixed error in lambdasync logs function caused by AWS updating the CloudWatch event timestamp format.