Skip to content

Commit 6eed35d

Browse files
author
chouchouji
committed
docs: update readme
1 parent 9d2cce3 commit 6eed35d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/prompts/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const projectType = await select({
8686
message: 'Pick a project type.',
8787
options: [
8888
{ value: 'ts', label: 'TypeScript' },
89-
{ value: 'js', label: 'JavaScript' },
89+
{ value: 'js', label: 'JavaScript', disabled: true },
9090
{ value: 'coffee', label: 'CoffeeScript', hint: 'oh no' },
9191
],
9292
});
@@ -103,7 +103,7 @@ const additionalTools = await multiselect({
103103
message: 'Select additional tools.',
104104
options: [
105105
{ value: 'eslint', label: 'ESLint', hint: 'recommended' },
106-
{ value: 'prettier', label: 'Prettier' },
106+
{ value: 'prettier', label: 'Prettier', disabled: true },
107107
{ value: 'gh-action', label: 'GitHub Action' },
108108
],
109109
required: false,

0 commit comments

Comments
 (0)