From a02e1695603a2a7c34f939d1993c5b1ec4e70e23 Mon Sep 17 00:00:00 2001 From: Federico Brigante Date: Sat, 23 Mar 2019 18:58:13 +0800 Subject: [PATCH] Drop question `Will bump from X to Y. Continue?` (#377) --- source/ui.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/source/ui.js b/source/ui.js index f7e9ef4d..52a13861 100644 --- a/source/ui.js +++ b/source/ui.js @@ -129,16 +129,6 @@ module.exports = async (options, pkg) => { return true; } }, - { - type: 'confirm', - name: 'confirm', - message: answers => { - const tag = answers.tag || options.tag; - const tagPart = tag ? ` and tag this release in npm as ${tag}` : ''; - - return `Will bump from ${chalk.cyan(oldVersion)} to ${chalk.cyan(answers.version + tagPart)}. Continue?`; - } - }, { type: 'confirm', name: 'publishScoped',