mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix: Hide 'deno cache' from help output (#25960)
`deno cache` was soft-deprecated in favor of `deno install`. It should not show up in the help output.
This commit is contained in:
parent
aafe771b55
commit
c487a86b04
2 changed files with 0 additions and 2 deletions
|
@ -1176,7 +1176,6 @@ static DENO_HELP: &str = cstr!(
|
|||
<y>Tooling:</>
|
||||
<g>bench</> Run benchmarks
|
||||
<p(245)>deno bench bench.ts</>
|
||||
<g>cache</> Cache the dependencies
|
||||
<g>check</> Type-check the dependencies
|
||||
<g>clean</> Remove the cache directory
|
||||
<g>compile</> Compile the script into a self contained executable
|
||||
|
|
|
@ -21,7 +21,6 @@ fn help_output() {
|
|||
"Install script as an executable",
|
||||
"Uninstall a script previously installed with deno install",
|
||||
"Run benchmarks",
|
||||
"Cache the dependencies",
|
||||
"Type-check the dependencies",
|
||||
"Compile the script into a self contained executable",
|
||||
"Print coverage reports",
|
||||
|
|
Loading…
Reference in a new issue