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-seedThen add it to your serverless.yml.
plugins:
- serverless-seedAnd enable Incremental Lambda Deploys.
custom:
seed:
incremental:
enabled: trueThat'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