Skip to content

Commit 35f5bf8

Browse files
committed
fix(bin): Update publish options
1 parent 52f93c3 commit 35f5bf8

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

src/bin.ts

+13-5
Original file line numberDiff line numberDiff line change
@@ -84,17 +84,25 @@ Publish Options:
8484
${
8585
prettyPrintRow([
8686
[
87-
"--token <Token>",
88-
"The API token to use when publishing. If unset, interactive authentication will be used.",
87+
"--allow-dirty",
88+
"Allow publishing if the repository has uncommitted changed.",
8989
],
90+
["--allow-slow-types", "Allow publishing with slow types."],
9091
[
9192
"--dry-run",
9293
"Prepare the package for publishing performing all checks and validations without uploading.",
9394
],
94-
["--allow-slow-types", "Allow publishing with slow types."],
9595
[
96-
"--provenance",
97-
"From CI/CD system, publicly links the package to where it was built and published from.",
96+
"--no-provenance",
97+
"Disable provenance attestation. Enabled by default on Github actions, publicly links the package to where it was built and published from.",
98+
],
99+
[
100+
"--set-version <VERSION>",
101+
"Set version for a package to be published. This flag can be used while publishing individual packages and cannot be used in a workspace",
102+
],
103+
[
104+
"--token <Token>",
105+
"The API token to use when publishing. If unset, interactive authentication will be used.",
98106
],
99107
])
100108
}

0 commit comments

Comments
 (0)