Thank you for considering contributing to the @mimamch/cmd
library! We welcome your contributions and appreciate your support. To ensure a smooth collaboration process, please follow these guidelines when contributing to the project.
If you encounter a bug or have a feature request, please open an issue on the GitHub issue tracker. When reporting a bug, provide detailed information about the issue, including steps to reproduce it. For feature requests, clearly describe the new functionality you would like to see in the library.
We welcome pull requests for bug fixes, enhancements, and new features. Before submitting a pull request, please ensure that:
- You have forked the repository and created a new branch for your changes.
- Your code follows the project's coding style and conventions.
- You have added appropriate tests to cover your changes.
- All existing tests pass successfully.
- Your commits are descriptive and include a clear explanation of the changes.
To submit a pull request, follow these steps:
- Fork the repository on GitHub.
- Clone your forked repository to your local machine.
- Create a new branch for your changes:
git checkout -b my-feature
. - Make your changes and commit them:
git commit -m "Add new feature"
. - Push your branch to your forked repository:
git push origin my-feature
. - Open a pull request on the official repository's GitHub page.
To set up the development environment and start working on the library, follow these steps:
- Clone the repository:
git clone https://github.com/mimamch/cmd.git
. - Install the project dependencies:
npm install
. - Run tests to ensure everything is working:
npm test
. - Make your changes and add tests for them.
- Run tests again to verify that everything is still working:
npm test
. - Commit your changes and push to your forked repository.
- Open a pull request following the guidelines mentioned above.
We strive to maintain a clean and consistent codebase. Please adhere to the following guidelines when contributing to the project:
- Use meaningful and descriptive variable and function names.
- Follow the existing code formatting and indentation style.
- Ensure your code is properly commented and documented.
- Write clear commit messages that explain the purpose of each commit.
By contributing to this project, you agree that your contributions will be licensed under the MIT License. Make sure you understand and agree to the licensing terms before submitting your pull request.
Please note that by participating in this project, you are expected to follow the Code of Conduct. Be respectful and considerate towards others, and maintain a positive and inclusive environment for collaboration.
We appreciate your contributions and look forward to your involvement in improving the @mimamch/cmd
library!