Thanks for helping improve the project! This guide keeps contributions fast and consistent.
- Fork and clone the repo.
- Install deps with
pnpm install(repo usespnpm@10.x). - Run the playground while you work:
pnpm dev(orpnpm playfor the alias). - Make changes under
src/(library),packages/(parser), orplayground/(demo).
pnpm lint— ESLint (Vue + TS).pnpm typecheck— vue-tsc.pnpm test— Vitest suite; usepnpm test:updateto refresh snapshots.pnpm build— library + CSS build (ensures workers/CSS are emitted).
- Follow Conventional Commits (
feat:,fix:,chore:, etc.). - Add/extend tests for parser changes or rendering behaviors when possible.
- Include screenshots/GIFs for UI-visible changes (playground/demo).
- Note any prop/API changes in the PR description; update README or docs if needed.
- Be kind and follow the Code of Conduct.
- Use the provided issue templates for bugs/feature requests.
- For rendering bugs, the interactive test page helps generate a shareable repro: https://markstream-vue.simonhe.me/test
- Vue 3 + TypeScript-first, 2-space indent, LF endings (see
.editorconfig). - Components in
src/componentsuse PascalCase directories/files; utils are camel/kebab as existing.