diff --git a/scripts/publish b/scripts/publish index 62f6e720..bcde8924 100755 --- a/scripts/publish +++ b/scripts/publish @@ -169,7 +169,7 @@ const tasks = [ task: [ { filter: ({ published }) => !published, - task: async ({ published, prefix }) => + task: async ({ prefix }) => inquirer.prompt([ { name: 'release', @@ -179,6 +179,18 @@ const tasks = [ } ]) }, + { + filter: ({ published }) => published, + task: async ({ prefix }) => + inquirer.prompt([ + { + name: 'release', + type: 'confirm', + default: false, + message: `${prefix}Want to cut a release?` + } + ]) + }, { title: 'Type', filter: ({ release }) => release,