fix(parse-prd): Fix parameter naming inconsistency in CLI parse-prd command
This commit is contained in:
5
.changeset/modern-parks-fly.md
Normal file
5
.changeset/modern-parks-fly.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'task-master-ai': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Fixes issue with force/append flag combinations for parse-prd.
|
||||||
@@ -619,8 +619,8 @@ function registerCommands(programInstance) {
|
|||||||
|
|
||||||
spinner = ora('Parsing PRD and generating tasks...\n').start();
|
spinner = ora('Parsing PRD and generating tasks...\n').start();
|
||||||
await parsePRD(inputFile, outputPath, numTasks, {
|
await parsePRD(inputFile, outputPath, numTasks, {
|
||||||
useAppend: useAppend,
|
append: useAppend,
|
||||||
useForce: useForce,
|
force: useForce,
|
||||||
research: research
|
research: research
|
||||||
});
|
});
|
||||||
spinner.succeed('Tasks generated successfully!');
|
spinner.succeed('Tasks generated successfully!');
|
||||||
|
|||||||
Reference in New Issue
Block a user