This is the web application that contains the documentation and playgrounds for the UUX component library for Angular. It allows developers to explore, test, and learn how to use the components in a sandbox environment.
git clone https://github.com/your-org/uux-angular-doc.gitcd uux-angular-docnpm installgit checkout main
git pull origin maingit checkout main
git pull origin main3. Create a new branch using the issue number and a short description. GitHub allows you to do this directly from the issue page:
- Click “Create branch” on the issue page.
- GitHub will automatically create a branch with the format:
<issue-number>-<issue-title>- Spaces are replaced by dashes (-), and special characters are sanitized. Example:
git checkout -b 12-add-menu-toggler-component4. Make your changes, commit following the Husky commit rules, and push the branch when ready for a pull request:
git add .
git commit -m "feat: add menu toggler component #12"
git push -u origin 12-add-menu-toggler-component- All commits must follow the commit message format enforced by Husky:
<type>: <description> #<issue-number>Allowed types: feat, fix, docs, style, refactor, test, chore, perf, build, ci, revert.
- Pushes will run automated tests via Husky. Branch deletion skips the tests automatically.