Skip to content

Commit

Permalink
fix(bin): Update publish options
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiralite committed Dec 24, 2024
1 parent 52f93c3 commit 179c42d
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions src/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,24 @@ ${
}
Publish Options:
${
prettyPrintRow([
[
"--token <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 <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 <Token>",
"The API token to use when publishing. If unset, interactive authentication will be used.",
],
])
}
Expand Down

0 comments on commit 179c42d

Please sign in to comment.