node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

31
server/node_modules/sendmail/.github/CONTRIBUTING.md generated vendored Normal file
View File

@@ -0,0 +1,31 @@
# Contributing
## How to contribute
Support and contributions from the open source community are essential for keeping
Sendmail up to date. We are always looking for the quality contributions and
will be happy to accept your Pull Requests
## Creating an Issue
Before you create a new Issue:
* Check the [Issues](https://github.com/guileen/node-sendmail/issues) on Github to ensure one doesn't already exist.
* use one of these topics in the beginning of your issue title- Contrib, Hotfix, Error, Help or Feature.
* Clearly describe the issue, including the steps to reproduce the issue.
* If it's a new feature, enhancement, or restructure, Explain your reasoning on why you think it should be added, as well as a particular use case.
## Making Changes
* Create a topic branch from the development branch with the issue number EX. `#200_make_changes`
* Keep git commit messages clear and appropriate
* Make Sure you have added any tests necessary to test your code. `npm test` (once testing is added)
* Update the Documentation to go along with any changes in functionality / improvements.
## Submitting the Pull Request
* Push your changes to your topic branch on your fork of the repo.
* Submit a pull request from your topic branch to the development branch
* We use [GitFlow](https://guides.github.com/introduction/flow/)
* Be sure to tag any issues your pull request is taking care of / contributing to. EX. `#201 add and updated this`
* By adding "Closes #xyz" to a commit message will auto close the issue once the pull request is merged in.