Skip to content

Commit

Permalink
Merge pull request #8 from ueberdosis/fix/7-improve-option-labels
Browse files Browse the repository at this point in the history
improve labels for js/ts options
  • Loading branch information
bdbch authored Feb 26, 2023
2 parents 8de13ce + 752e4f4 commit 2f55a79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ async function init() {
name: 'projectTemplate',
message: 'Project template',
choices: [
{ title: 'Extension without TypeScript', value: 'extension-js' },
{ title: 'Extension with TypeScript', value: 'extension-ts' },
{ title: 'With Javascript', value: 'extension-js' },
{ title: 'With Typescript', value: 'extension-ts' },
],
initial: 0,
onState: (state: any) => {
onState: (state) => {
template = state.value || 'js'
},
},
Expand Down

0 comments on commit 2f55a79

Please sign in to comment.