Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(bin): Update publish options #114

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading