CONTRIBUTING.md
August 26, 2026 ยท View on GitHub
Make sure that what you trying to fix really a bug, or if adding feature that is good way to solve your task.
- Fork the repo and install stuff:
- This repo uses pnpm. Run
pnpm run setupin the root folder (it will install all deps for the workspace and do other required steps) - Run
pnpm run demofor run the demo project in watch mode
-
Write code! Add some feature or fix bug.
-
Check that all tests passed(unit and e2e) and add tests for your code. You can run unit tests with
pnpm run test:unitand Playwright e2e tests withpnpm run test:e2e -
Update readme and example (if needed)
-
Make commit and Pull Request, review, approval and merge.