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 35f5bf8
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions src/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,25 @@ Publish Options:
${
prettyPrintRow([
[
"--token <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 <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 35f5bf8

Please sign in to comment.