You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ Commits must follow [Conventional Commits](https://www.conventionalcommits.org/)
66
66
|`refactor`| none | Code restructuring with no behaviour change |
67
67
|`test`| none | Adding or updating tests |
68
68
69
-
**Key rule**:`fix`means a consumer-facing bug fix that warrants an npm release. If the change only affects CI, dev tooling, or repo internals, use `ci`or `chore` instead — even if it "fixes" something.
69
+
**NEVER use`fix`for non-consumer-facing changes.**`fix` triggers an npm release — it means a bug fix visible to package consumers (runtime behaviour, CLI output, published types). If the change only affects CI, dev tooling, tests, or repo internals, use `ci`, `chore`, or `test` instead — even if it "fixes" something. When in doubt, ask: "would a consumer notice if this change didn't exist?" If no, it's not `fix`.
0 commit comments