We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d2cce3 commit 6eed35dCopy full SHA for 6eed35d
packages/prompts/README.md
@@ -86,7 +86,7 @@ const projectType = await select({
86
message: 'Pick a project type.',
87
options: [
88
{ value: 'ts', label: 'TypeScript' },
89
- { value: 'js', label: 'JavaScript' },
+ { value: 'js', label: 'JavaScript', disabled: true },
90
{ value: 'coffee', label: 'CoffeeScript', hint: 'oh no' },
91
],
92
});
@@ -103,7 +103,7 @@ const additionalTools = await multiselect({
103
message: 'Select additional tools.',
104
105
{ value: 'eslint', label: 'ESLint', hint: 'recommended' },
106
- { value: 'prettier', label: 'Prettier' },
+ { value: 'prettier', label: 'Prettier', disabled: true },
107
{ value: 'gh-action', label: 'GitHub Action' },
108
109
required: false,
0 commit comments