From 343a751739eda514c047037cc3b3a4ebc40932ba Mon Sep 17 00:00:00 2001 From: Daniel Stockman Date: Mon, 14 Oct 2019 14:37:16 -0700 Subject: [PATCH] fix(options): Explicit `--force-publish` --- commands/version/command.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/commands/version/command.js b/commands/version/command.js index b67203fb21..4f35a10876 100644 --- a/commands/version/command.js +++ b/commands/version/command.js @@ -42,6 +42,10 @@ exports.builder = (yargs, composed) => { describe: "Specify cross-dependency version numbers exactly rather than with a caret (^).", type: "boolean", }, + "force-publish": { + describe: "Always include targeted packages in versioning operations, skipping default logic.", + // type must remain ambiguous because it is overloaded (boolean _or_ string _or_ array) + }, "git-remote": { describe: "Push git changes to the specified remote.", type: "string",