Table of Contents
- Code of Conduct
- Ways to Contribute
- Working on your first Pull Request?
- Sending a Pull Request
- Working locally
- How to increase the chance of a change being accepted?
- Working locally
Formik has adopted the Contributor Covenant as its Code of Conduct, and we expect project participants to adhere to it. Please read the full text so that you can understand what actions will and will not be tolerated.
There are many ways to contribute to Formik, code contribution is one aspect of it.
- Spread the word - Evangelize Formik by linking to https://formik.org on your website, every backlink matters. Follow us on Twitter, like and retweet the important news. Or just talk about us with your friends.
- Give us feedback. Tell us what we're doing well or where we can improve. Please upvote (👍) the issues that you are the most interested in seeing solved.
- Help new users. You can answer questions on StackOverflow or GitHub Discussions
- Make changes happen. Suggest changes to the documentation or code.
- Write guides If you come with a cool workflow, write about and we'll feature it in the blog or on the resources page
- Report bugs or missing features by creating an issue.
- Review and comment on existing pull requests and issues.
You can learn how from this free video series:
How to Contribute to a Project on GitHub
To help you get your feet wet and get you familiar with our contribution process, we have a list of good first issues that contain changes that have a relatively limited scope. This label means that there is already a working solution to the issue in the discussion section. Therefore, it is a great place to get started.
If you decide to fix an issue, please be sure to check the comment thread in case somebody is already working on a fix. If nobody is working on it at the moment, please leave a comment stating that you have started to work on it so other people don't accidentally duplicate your effort.
If somebody claims an issue but doesn't follow up for more than a week, it's fine to take it over but you should still leave a comment. If there has been no activity on the issue for 7 to 14 days, it is safe to assume that nobody is working on it.
Formik is a community project, so Pull Requests are always welcome, but, before working on a large change, it is best to open an issue first to discuss it with the maintainers.
When in doubt, keep your Pull Requests small. To give a Pull Request the best chance of getting accepted, don't bundle more than one feature or bug fix per Pull Request. It's often best to create two smaller Pull Requests than one big one.
-
Clone the fork to your local machine and add upstream remote:
git clone https://github.com/<your username>/formik.git
cd formik
git remote add upstream https://github.com/formik/formik.git
- Synchronize your local
next
branch with the upstream one:
git checkout main
git pull upstream main
- Install the dependencies with yarn (npm isn't supported):
yarn install
- Create a new topic branch:
git checkout -b my-topic-branch
- Make changes, commit and push to your fork:
git push -u origin HEAD
- Go to the repository and make a Pull Request.
The core team is monitoring for Pull Requests. We will review your Pull Request and either merge it, request changes to it, or close it with an explanation.
The repo is managed with Lerna, Yarn Workspaces, and TSDX.
yarn install
yarn dev
Runs jest on all projects
yarn test
The continuous integration service runs a series of checks automatically when a Pull Request is opened. If you're not sure if your changes will pass, you can always open a Pull Request and the GitHub UI will display a summary of the results. If any of them fail, refer to Checks and how to fix them.
Make sure the following is true:
- The branch is targeted at
main
for ongoing development. We do our best to keepmain
in good shape, with all tests passing. Code that lands inmain
must be compatible with the latest stable release. It may contain additional features, but no breaking changes. We should be able to release a new minor version from the tip ofmain
at any time. - If a feature is being added:
- If the result was already achievable with the library, explain why this feature needs to be added.
- If this is a common use case, consider adding an example to the documentation.
- When adding new features or modifying existing, please include tests to confirm the new behavior.
- The branch is not behind its target. (We use https://kodiakhq.com) to try to automate this process for you.
Because we will only merge a Pull Request for which all tests pass. The following items need to be correct. We will provide assistance if not:
- The code is formatted (run
yarn format
). - The code is linted (run
yarn lint
). - The Pull Request title is written imperatively. See How to Write a Git Commit Message for a great explanation)
- If you have made a change that impacts semantic versioning, include a changeset by running
yarn changeset
and describing the change you've made. These get rolled together into release notes.
yarn dev
This will run Jest
unit tests
yarn test
There is a Next.js playground that also serves as the app used for integration tests. What's cool is you can run Formik's build setup, next.js, and playwright all at the same time and everything will just magically "work" and live reload whenever you make a change. This is the suggested development workflow going forward.
- From the root, open a terminal and run
yarn dev
to start TSDX watch on all packages - Then start the playground app with
yarn start:app
in another terminal window (it will boot to http://localhost:3000) - And finally, you can open a third tab to run playwright
- You can use playwright UI using
yarn e2e:ui
- Or, if you'd rather not deal GUI, just run
yarn e2e
- You can use playwright UI using