diff --git a/src/bin.ts b/src/bin.ts index b159b19..8cf7d93 100644 --- a/src/bin.ts +++ b/src/bin.ts @@ -81,20 +81,24 @@ ${ } Publish Options: -${ - prettyPrintRow([ - [ - "--token ", - "The API token to use when publishing. If unset, interactive authentication will be used.", - ], +${prettyPrintRow([ + ["--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.", ], ]) }