Skip to main content

Practice ยท 2 of 3

Release Notes Builder

Given an array of parsed commits { type, breaking }, write releaseBump(commits): return "major" if any commit is breaking, else "minor" if any type is "feat", else "patch" if any "fix", else null (no release).

Difficulty: intermediate

Back to lesson: Practice: Review & Conventional Commits โ€” Practice