From 35f5bf833a9fa29dd9437667f3e45fcc927d81a4 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Tue, 24 Dec 2024 00:58:28 +0000 Subject: [PATCH] fix(bin): Update publish options --- src/bin.ts | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/bin.ts b/src/bin.ts index b159b19..ba5b659 100644 --- a/src/bin.ts +++ b/src/bin.ts @@ -84,17 +84,25 @@ Publish Options: ${ prettyPrintRow([ [ - "--token ", - "The API token to use when publishing. If unset, interactive authentication will be used.", + "--allow-dirty", + "Allow publishing if the repository has uncommitted changed.", ], + ["--allow-slow-types", "Allow publishing with slow types."], [ "--dry-run", "Prepare the package for publishing performing all checks and validations without uploading.", ], - ["--allow-slow-types", "Allow publishing with slow types."], [ - "--provenance", - "From CI/CD system, publicly links the package to where it was built and published from.", + "--no-provenance", + "Disable provenance attestation. Enabled by default on Github actions, publicly links the package to where it was built and published from.", + ], + [ + "--set-version ", + "Set version for a package to be published. This flag can be used while publishing individual packages and cannot be used in a workspace", + ], + [ + "--token ", + "The API token to use when publishing. If unset, interactive authentication will be used.", ], ]) }