Super simple serverless plugin for validating stage names before deployment
npm install serverless-stage-manager


#### Install using Serverless plugin manager
``bash`
serverless plugin install --name serverless-stage-manager
#### Install using npm
Install the module using npm:
`bash`
npm install serverless-stage-manager --save-dev
Add serverless-stage-manager to the plugin list of your serverless.yml file:
`yaml`
plugins:
- serverless-stage-manager
Add a stages value in the custom section of your serverless.yml file and specify an array of valid stage names.
`yaml`
custom:
stages:
- dev
- staging
- prod
When running serverless deploy or serverless deploy function, it will check to make sure it is a valid stage name before continuing. For example:
`bashGiven the above configuration of dev, staging & prod