Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
We accept pull requests for bug fixes and features where we've discussed the approach in an issue and given the go-ahead for a community member to work on it. We'd also love to hear about ideas for new features as issues.
We track issues on our project board here.
Please do:
- Check existing issues to verify that the bug or feature request has not already been submitted.
- Open an issue if things aren't working as expected.
- Open an issue to propose a significant change.
- Open a pull request to fix a bug.
- Open a pull request to fix documentation about a command.
- Open a pull request for any issue labelled
help wanted
orgood first issue
.
Please avoid:
- Opening pull requests for issues marked
needs-design
,needs-investigation
, orblocked
.
Contributions to this project are released to the public under the project's open source license.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
This repository contains multiple packages and uses npm workspaces to manage the dependencies between them.
These are one time installations required to be able to test your changes locally as part of the pull request (PR) submission process.
- Install Node.js for your platform (>= version 18). Ensure you also use a recent version of
npm
that supports workspaces (>= version 7). - Install the dependencies. From the repository root run:
$ npm i
- Fork and clone the repository
- Configure and install the dependencies:
npm i
- Create a new branch:
git checkout -b my-branch-name
- Make your change, add tests, and make sure the tests and linter still pass
- Push to your fork and submit a pull request
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
- Format your code with prettier.
- Write tests.
- Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
- Write a good commit message.
Please also look at the README.md
files for each package for additional notes on contributing.