Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 858 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 858 Bytes

branch-name-formatter

Branch-name-formatter is a website developed with Vue.js and TypeScript that allows users to create and manage branch names with the appropriate format. It features a form to create the branch name and a list to view and delete the created names.

This project uses Vue components for the user interface and a BranchManager to handle the business logic. Additionally, it follows best development practices (SOLID, DRY, KISS, etc.) and includes unit tests for the components and the BranchManager.

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Type-Check, Compile and Minify for Production

npm run build

Run Unit Tests with Vitest

npm run test:unit

Lint with ESLint

npm run lint