Reorder installer questions for better logic
Better flow: name → structure → workflow Old order: 1. Project name 2. Pitch deck question (workflow) 3. Output folder (structure) New order: 1. Project name 2. Output folder (structure) 3. Pitch deck question (workflow) More intuitive: establish basics first, then choose workflow.
This commit is contained in:
parent
2f07264ee4
commit
eb879eb574
|
|
@ -42,6 +42,12 @@ class UI {
|
|||
message: 'Project name:',
|
||||
default: defaultProjectName,
|
||||
},
|
||||
{
|
||||
type: 'input',
|
||||
name: 'root_folder',
|
||||
message: 'Output folder name:',
|
||||
default: 'design-process',
|
||||
},
|
||||
{
|
||||
type: 'list',
|
||||
name: 'starting_point',
|
||||
|
|
@ -52,12 +58,6 @@ class UI {
|
|||
],
|
||||
default: 'brief',
|
||||
},
|
||||
{
|
||||
type: 'input',
|
||||
name: 'root_folder',
|
||||
message: 'Output folder name:',
|
||||
default: 'design-process',
|
||||
},
|
||||
]);
|
||||
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in New Issue