diff options
author | Ryan B. <ryan.betts@deno.com> | 2024-07-29 18:36:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-29 18:36:53 -0400 |
commit | 191de7d72b3f5236292b9cba363968ee83116d35 (patch) | |
tree | f4b1d09ef8d686a63d250bb4d30811170aedde2c /cli/args/flags.rs | |
parent | 38a363dc7caef189372861182c3336c56b8efffb (diff) |
fix(cli): Unhide publish subcommand help string (#24787)
Fixes #24753
The help text for `deno publish` was marked hidden while in preview.
This is no longer a preview feature.
Diffstat (limited to 'cli/args/flags.rs')
-rw-r--r-- | cli/args/flags.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 8d43846c8..91adac84b 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -2845,7 +2845,7 @@ fn vendor_subcommand() -> Command { .long_about( "⚠️ Warning: `deno vendor` is deprecated and will be removed in Deno 2.0. Add `\"vendor\": true` to your `deno.json` or use the `--vendor` flag instead. - + Vendor remote modules into a local directory. Analyzes the provided modules along with their dependencies, downloads @@ -2894,8 +2894,7 @@ Remote modules and multiple modules may also be specified: fn publish_subcommand() -> Command { Command::new("publish") - .hide(true) - .about("Unstable preview feature: Publish the current working directory's package or workspace") + .about("Publish the current working directory's package or workspace") // TODO: .long_about() .defer(|cmd| { cmd.arg( |