Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.7 KB

CONTRIBUTING.md

File metadata and controls

39 lines (30 loc) · 1.7 KB

Contributing to Fetchtastic

Welcome, and thanks for your interest in contributing! Please take a moment to review the following:

Style Guide

Issues

If you encounter any bugs, have feature requests, or want to suggest improvements, please visit GitHub Issues and open an issue (if there isn't one already). When opening an issue, please provide as much detail as possible, including steps to reproduce the problem (if applicable).

Pull Requests

We appreciate your efforts to contribute directly to the codebase through pull requests.

When contributing with new features or bug-fixes, please follow these steps:

  1. Fork the repository.
  2. Create a new branch from the main branch for example feature/some-new-feature or bugfix/some-bugfix.
  3. In the repo, prior to any other installation steps, run:
    corepack enable
  4. Install dependencies:
    pnpm i
  5. Ensure your code follows the project's coding style.
  6. Write clear and concise commit messages.
  7. Consider including tests and documentation changes if applicable.
  8. Add a changeset by running:
    pnpm changeset
  9. Submit your pull request, providing a description of the changes made and any additional context.