coder-config 0.44.8 → 0.44.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/lib/constants.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -677,6 +677,24 @@ npm run build
|
|
|
677
677
|
npm start
|
|
678
678
|
```
|
|
679
679
|
|
|
680
|
+
### Testing
|
|
681
|
+
|
|
682
|
+
The project has comprehensive test coverage with 230 tests across 10 test files:
|
|
683
|
+
|
|
684
|
+
```bash
|
|
685
|
+
# Run all tests
|
|
686
|
+
npm test
|
|
687
|
+
```
|
|
688
|
+
|
|
689
|
+
Test coverage includes:
|
|
690
|
+
- Core utilities and configuration management
|
|
691
|
+
- MCP registry operations
|
|
692
|
+
- Memory and environment variable systems
|
|
693
|
+
- Project initialization and registry
|
|
694
|
+
- Config generation and hierarchy
|
|
695
|
+
|
|
696
|
+
See [TEST_COVERAGE.md](TEST_COVERAGE.md) for detailed coverage information.
|
|
697
|
+
|
|
680
698
|
## License
|
|
681
699
|
|
|
682
700
|
MIT
|
package/lib/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coder-config",
|
|
3
|
-
"version": "0.44.
|
|
3
|
+
"version": "0.44.10",
|
|
4
4
|
"description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
|
|
5
5
|
"author": "regression.io",
|
|
6
6
|
"main": "config-loader.js",
|