Really glad you're interested in contributing. Please take a moment to read this note to better participate in making contributions.
- If the language of the README is English, it is best to use English to ask questions. This allows more people to search and participate in the issue.
- Ensure the bug was not already reported by searching on GitHub under Issues.
- If you're unable to find an open issue addressing the problem, open a new one. Be sure to include:
- A title and clear description.
- As much relevant information as possible.
- A code sample or an executable test case.
If you want to contribute to the project, you'll need to set up the repository on your local machine.
- Use the latest LTS of Node.js.
- Use
pnpm
.
Before you start to work on a feature pull request, it's always better to open a feature request issue first to discuss with the maintainers whether the feature is desired and the design of those features. This would help save time for both the maintainers and the contributors and help features to be shipped faster.
We use Conventional Commits for commit messages, which allows the changelog to be auto-generated based on the commits. Please read the guide through if you aren't familiar with it already. There's some additional tips:
-
Only
fix:
andfeat:
will be presented in the changelog. -
Note that
fix:
andfeat:
are for actual code changes (that might affect logic). For typo or document changes, usedocs:
orchore:
instead:->fix: typo
docs: fix typo