Skip to content

Commit e6c4ae8

Browse files
committed
fix: main package needs cli dependencies to be included
1 parent 574738d commit e6c4ae8

3 files changed

Lines changed: 3440 additions & 1831 deletions

File tree

.vibe/development-plan-publish-cli.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ if (args.length === 0) {
154154
- [x] Fix remaining test failures in MCP server and E2E tests
155155
- [x] Update all test configurations from old format (web_sources, local_path) to new sources format
156156
- [x] Fix CLI routing issue - entry point was not properly awaiting imports
157+
- [x] Fix missing CLI dependencies in main package (commander, chalk, ora)
157158

158159
### Completed
159160

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@
5050
"@codemcp/knowledge-mcp-server": "workspace:*",
5151
"@modelcontextprotocol/sdk": "^1.19.1",
5252
"@types/js-yaml": "4.0.9",
53-
"js-yaml": "4.1.0"
53+
"js-yaml": "4.1.0",
54+
"commander": "^12.0.0",
55+
"chalk": "^5.3.0",
56+
"ora": "^8.0.1"
5457
},
5558
"devDependencies": {
5659
"@modelcontextprotocol/inspector": "0.16.8",

0 commit comments

Comments
 (0)