Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.21 KB

CONTRIBUTING.md

File metadata and controls

44 lines (27 loc) · 1.21 KB

Get Started

Fork this repository, and clone.

Setup

Make sure to install the dependencies:

pnpm install

Development Server

Start the development server

pnpm dev

Commit Rules

🧹 chore: updates to the build process or auxiliary tools and libraries

🚀 perf: improving an existing functionality like performance

✨ feat: new feature (a non-breaking change that adds functionality)

📖 docs: updates to the documentation, readme or JSdoc annotations

🔨 refactor: refactor existing code in the product, but does not change the behavior of the product

🐞 fix: bug fix (a non-breaking change that fixes an issue)

Pull Request description template

Checklist according to your commit message, using x in [ ]

  • 🧹 chore: updates to the build process or auxiliary tools and libraries
  • 🚀 perf: improving an existing functionality like performance
  • ✨ feat: new feature (a non-breaking change that adds functionality)
  • 📖 docs: updates to the documentation, readme or JSdoc annotations
  • 🔨 refactor: refactor existing code in the product, but does not change the behavior of the product
  • 🐞 fix: bug fix (a non-breaking change that fixes an issue)