Library common includes components, dtos, utils, hooks... use between both pl-fe and pl-desk
npm install drakysoft-uiangular2html
MAJOR (1.x.x): Breaking changes, thay đổi không tương thích ngược
- yarn version --major --no-git-tag-version --no-commit-hooks
MINOR (x.1.x): Thêm tính năng mới (backward compatible)
- yarn version --minor --no-git-tag-version --no-commit-hooks
PATCH (x.x.1): Sửa lỗi, cải tiến nhỏ, updates
- yarn version --patch --no-git-tag-version --no-commit-hooks
`
---
Ví dụ
---
`angular2html
Breaking change
git tag -a v2.0.0 -m "Release v2.0.0: Migrate to React 18 - breaking changes"
Tính năng mới
git tag -a v1.3.0 -m "Release v1.3.0: Add new chart components and utilities"
Sửa lỗi
git tag -a v1.2.4 -m "Release v1.2.4: Fix dropdown positioning and memory leak"
`
---
Quy trình push code
`
yarn version --patch --no-git-tag-version --no-commit-hooks
git add .
git commit -m "Fix dropdown positioning and memory leak"
git tag -a v1.2.3 -m "Release v1.2.3: Fix dropdown positioning and memory leak"
git push origin v1.2.3
``