Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/menvia/farol-extension-email-aws
Farol Extension - AWS SES
https://github.com/menvia/farol-extension-email-aws
Last synced: 18 days ago
JSON representation
Farol Extension - AWS SES
- Host: GitHub
- URL: https://github.com/menvia/farol-extension-email-aws
- Owner: menvia
- Created: 2019-03-19T20:37:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-25T07:59:09.000Z (almost 2 years ago)
- Last Synced: 2025-01-05T09:32:43.728Z (about 1 month ago)
- Language: JavaScript
- Size: 15.6 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.MD
- Changelog: CHANGELOG.MD
Awesome Lists containing this project
README
# Farol Extension for Email AWS (SES)
## Install
### Using NPM
- To install, run:
`npm install farol-extension-email-aws`- To update, run:
`npm update farol-extension-email-aws`## Develop
### NPM
Use `npm link` in the API project repository inside the extensions folder in order to store the link name and path in NPM.
On the project used to develop the library you can run `npm link farol-extension-email-aws` and it will start using the development version from your API.
## Publish
In order to release a new version you shall follow the steps bellow:
1. Make the desired changes;
2. Update CHANGELOG.md file;
3. Commit your changes;
4. Run the commands below:- Run
```
npm version patch
FAROL_SDK_VERSION=$(npx -c 'echo "$npm_package_version"')
git commit -am"${FAROL_SDK_VERSION}"
git tag ${FAROL_SDK_VERSION}
git push && git push --tags
```