From 82562e84bd9bb355b4a3efec08b7769a11d60d6c Mon Sep 17 00:00:00 2001 From: Colin Tinney Date: Fri, 24 Apr 2026 14:44:40 -0700 Subject: [PATCH] docs: document microsite scope convention for conventional commits --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e58180f..9a92bc8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -29,6 +29,8 @@ Format: `type(scope): description` Common types: `feat`, `fix`, `refactor`, `docs`, `chore`, `test`, `style` +**Microsite scope:** Changes to a microsite must include the microsite name as the scope. The scope matches the directory name under `src/microsites/`, `src/pages/`, and `public/` (currently `hands` and `whatarewedoinghere`). Commits that mix microsite and main-site changes should be split. + Examples: - `feat: add underwater theme` @@ -36,6 +38,8 @@ Examples: - `refactor: extract math helpers from animation.ts` - `docs: update CONTRIBUTING.md` - `test: add e2e tests for theme switching` +- `feat(hands): add new hands background` +- `fix(whatarewedoinghere): correct sitemap URL` ## Architecture