Skip to content

Commit

Permalink
feat: show filetypes unavailable in express download
Browse files Browse the repository at this point in the history
  • Loading branch information
Xmader committed Aug 1, 2021
1 parent c5cff1c commit 04a7660
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,19 @@ const expDL = async (scoreinfo: ScoreInfoHtml) => {
type: 'checkbox',
name: 'expDlTypes',
message: 'Filetype Selection',
choices: ['midi', 'mp3', 'pdf'] as ExpDlType[],
choices: [
'midi', 'mp3', 'pdf', // ExpDlType
new inquirer.Separator(),
new inquirer.Separator(
'Unavailable in express download\n' +
' - MSCZ\n' +
' - MusicXML\n' +
' - FLAC/OGG Audio\n' +
' - Individual Parts',
),
],
validate: checkboxValidate,
pageSize: Infinity,
})

// destination directory selection
Expand Down

0 comments on commit 04a7660

Please sign in to comment.