Loading...
Loading...
Guide for writing commit messages in the dbx-components workspace. Follows @commitlint/config-angular conventions with project-specific type restrictions and scope patterns.
npx skill4agent add dereekb/dbx-components dbx-commit-messages.commitlintrc.jsontype(scope): subject
<-- blank line required before body
- additional detail line
- another detail linetype(scope): subject-| Type | When to Use |
|---|---|
| Code changes that don't add new features or fix user-facing bugs. This is the most common type. Use for restructuring, renaming, style fixes, updating configurations, adding utilities, etc. |
| Build system or tooling changes. Commonly used as |
| Bug fixes for existing functionality. |
| Adding or updating tests. |
| Documentation-only changes. |
| Performance improvements. |
| Work-in-progress commit that isn't a complete refactor. Use when saving progress on an incomplete task. |
| Commits related to AI skills, AI-generated content, or AI-specific configuration (e.g., |
| Changes to demo applications or example code. |
| Type | Reserved For |
|---|---|
| Feature PRs on GitHub only. Never use in direct commits to develop. |
| CircleCI configuration changes only. |
| Auto-generated by CircleCI release tooling. |
| Auto-generated when merging main back into develop after a release. |
Important:and any breaking changes (feat,feat!, etc.) are reserved for pull requests. Do not use them in regular commits on the develop branch.refactor!
refactor: style fixesbuild: lint fixrefactor: fixed DbxMapboxMapDirectiverefactor: added DbxLinkifyServicerefactor: updated dbx-grid, dbx-accordionrefactor: package.json fixesrefactorrefactorrefactor: style fixes
refactor: updated vitest config
refactor: package.json fixes
build: lint fix
checkpoint: accordion view
ai: moved skills to .clauderefactor: updated dbx-grid, dbx-accordion
- added responsive breakpoint support
- fixed column alignment in grid
refactor: fixed early destroy on components
- subscription was completing before cleanup
fix: resolved null reference in form validation
- checked for undefined before accessing nested field
test: added unit tests for object filter
- covers edge cases for empty and nested objectsCo-Authored-Byfeatci