We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac2b658 commit b38ca82Copy full SHA for b38ca82
1 file changed
CLAUDE.md
@@ -1,3 +1,12 @@
1
+## Version Management
2
+- **DO NOT manually edit CHANGELOG.md files** - Melos handles changelog generation automatically
3
+- **Use semantic commit messages** for proper versioning:
4
+ - `fix:` for bug fixes (patch version bump)
5
+ - `feat:` for new features (minor version bump)
6
+ - `BREAKING CHANGE:` or `!` for breaking changes (major version bump)
7
+ - Example: `fix: prevent iOS build errors with Logger availability`
8
+- Melos will generate changelog entries from commit messages during release
9
+
10
## Pre-Commit Requirements
11
**CRITICAL**: Always run from project root before ANY commit:
12
1. `dart analyze` (check for code errors)
0 commit comments