1.0.0 • Published 1 year ago
denisitotg v1.0.0
# My Serverless Extension
This is a Serverless Framework extension package that adds a custom command with lifecycle events to your Serverless projects.
## Installation
To install this package, simply add it as a local plugin in your Serverless project:
```yaml
# serverless.yml
plugins:
- ./serverless-extension.js
```
## Usage
After installing the plugin, you can use the custom command `mycommand` along with its lifecycle events and options:
```bash
serverless mycommand
```
### Options
- `option1`: Custom option 1 description
- `option2`: Custom option 2 description
### Lifecycle Events
- `event1`: Description of event 1
- `event2`: Description of event 2
## Example
Here's an example `serverless.yml` file using this plugin:
```yaml
# serverless.yml
service: my-service
provider:
name: aws
runtime: nodejs14.x
plugins:
- ./serverless-extension.js
custom:
myCustomProperty: value
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
1.0.0
1 year ago