A Serverless plugin for optimizing deploys in Seed. This plugin allows Seed to enable Incremental Lambda Deploys for your Serverless services.
Install the serverless-seed
plugin using:
$ npm install --save-dev serverless-seed
Then add it to your serverless.yml
.
plugins:
- serverless-seed
And enable Incremental Lambda Deploys.
custom:
seed:
incremental:
enabled: true
That's it! Now deploy to Seed and enjoy Incremental Lambda Deploys! You can read more about this in detail over on our docs.
To disable Incremental Lambda Deploys for certain stages.
custom:
seed:
incremental:
enabled: true
disabledFor:
- prod
- staging