fix: ensure CLI correctly handles kebab-case options

- Fixed CLI wrapper to convert camelCase options to kebab-case when passing to dev.js
- Added explicit support for --input option in parse-prd command
- Updated commands.mdc to clarify Commander.js camelCase/kebab-case behavior
This commit is contained in:
Eyal Toledano
2025-03-25 00:42:59 -04:00
parent 3be7920868
commit b3d6e61e6b
6 changed files with 42 additions and 14 deletions

View File

@@ -1,12 +1,12 @@
{
"name": "task-master-ai",
"version": "0.9.26",
"version": "0.9.27",
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
"main": "index.js",
"type": "module",
"bin": {
"task-master": "./bin/task-master.js",
"task-master-init": "./bin/task-master-init.js"
"task-master": "bin/task-master.js",
"task-master-init": "bin/task-master-init.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
@@ -72,4 +72,4 @@
"mock-fs": "^5.5.0",
"supertest": "^7.1.0"
}
}
}