Appearance
Contributing
Thanks for wanting to contribute!
Development commands to know:
pnpm dev— start the library playgroundpnpm play— start the playground (same as dev)pnpm build— build the librarypnpm test— run unit testspnpm docs:dev— start the VitePress docs server
How to add a docs page:
- Add a markdown file under
docs/ordocs/guide. - Update
docs/.vitepress/config.tssidebar if needed. - Run
pnpm docs:devto preview the page locally and ensure everything builds. - Open a PR with your changes.
Guidelines:
- Keep docs concise and example-driven
- If adding code snippets to docs, verify they run in
playgroundor tests - Add tests for any new features in
test/and updateREADME/ docs accordingly