Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.11 KB

File metadata and controls

49 lines (35 loc) · 1.11 KB

Commit Convention

This project follows Conventional Commits.

Format

<type>(<scope>): <subject>

<body>

<footer>

Types

  • feat: A new feature
  • fix: A bug fix
  • docs: Documentation only changes
  • style: Changes that do not affect the meaning of the code (white-space, formatting, etc)
  • refactor: A code change that neither fixes a bug nor adds a feature
  • perf: A code change that improves performance
  • test: Adding missing tests or correcting existing tests
  • build: Changes that affect the build system or external dependencies
  • ci: Changes to our CI configuration files and scripts
  • chore: Other changes that don't modify src or test files
  • revert: Reverts a previous commit

Examples

feat(auth): implement login functionality

- Add login form component
- Implement authentication service
- Add token storage

Closes #123
fix(ui): correct button alignment in navigation bar

The alignment was causing the button to overlap with other elements on smaller screens.
docs: update README with new API documentation