1.0.0 • Published 24 days ago

serverless-selective-function-deploy v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
24 days ago

serverless-selective-function-deploy

This plugin enables selective deployment of AWS Lambda functions in a Serverless Framework project by setting a toDeploy boolean in the function's configuration.

toDeploy property defaults to true, meaning that functions will be deployed unless explicitly set otherwise.

  1. Add the plugin to your serverless.yml:
plugins:
  - serverless-selective-function-deploy
  1. Mark functions with toDeploy in your function configuration
functions:
  myFunction:
    handler: handler.myFunction
    toDeploy: false
1.0.0

24 days ago