Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/chubby-frogs-battle.md

This file was deleted.

11 changes: 11 additions & 0 deletions .changeset/config-loading-system.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"@labcatr/labcommitr": minor
---

feat: add intelligent configuration file discovery

- Tool now automatically finds configuration files in project roots
- Prioritizes git repositories and supports monorepo structures
- Provides clear error messages when configuration files have issues
- Improved performance with smart caching for faster subsequent runs
- Works reliably across different project structures and environments
11 changes: 11 additions & 0 deletions .changeset/config-validation-system.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"@labcatr/labcommitr": minor
---

feat: add configuration file validation

- Configuration files are now validated for syntax and required fields
- Clear error messages help users fix configuration issues quickly
- Tool prevents common mistakes like missing commit types or invalid IDs
- Improved reliability when loading project-specific configurations
- Validates commit type IDs contain only lowercase letters as required
5 changes: 0 additions & 5 deletions .changeset/pink-keys-taste.md

This file was deleted.

10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,18 @@ jspm_packages/
web_modules/

# TypeScript cache
*.tsbuildinfo\
*.tsbuildinfo


### Other
# Remove rust files for now
rust-src/
dist/

### Development
# Development progress tracking (internal use only)
DEVELOPMENT_PROGRESS.md
REQUIREMENTS.md
CONFIG_SCHEMA.md
DEVELOPMENT_GUIDELINES.md
ARCHITECTURE_DECISIONS.md
1 change: 1 addition & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,21 @@
"author": "Trevor Fox",
"license": "ISC",
"dependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^20.17.30",
"boxen": "^7.1.1",
"@changesets/cli": "^2.29.7",
"@types/node": "^24.3.3",
"boxen": "^8.0.1",
"consola": "^3.4.2",
"cosmiconfig": "^9.0.0",
"js-yaml": "^4.1.0",
"magicast": "^0.3.5",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"ufo": "^1.6.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9"
}
}
Loading