fix: no cmd prefix in help output go links (#25459)

This commit is contained in:
Luca Casonato 2024-09-13 00:44:43 +02:00 committed by GitHub
parent c9c2531ff0
commit 018329a4d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1658,7 +1658,7 @@ Evaluate the given files, run all benches declared with 'Deno.bench()' and repor
If you specify a directory instead of a file, the path is expanded to all contained files matching the glob <c>{*_,*.,}bench.{js,mjs,ts,mts,jsx,tsx}</>: If you specify a directory instead of a file, the path is expanded to all contained files matching the glob <c>{*_,*.,}bench.{js,mjs,ts,mts,jsx,tsx}</>:
<p(245)>deno bench src/</> <p(245)>deno bench src/</>
<y>Read more:</> <c>https://docs.deno.com/go/cmd/bench</>"), <y>Read more:</> <c>https://docs.deno.com/go/bench</>"),
UnstableArgsConfig::ResolutionAndRuntime, UnstableArgsConfig::ResolutionAndRuntime,
) )
.defer(|cmd| { .defer(|cmd| {
@ -1723,7 +1723,7 @@ Download and compile a module with all of its static dependencies and save them
Future runs of this module will trigger no downloads or compilation unless --reload is specified Future runs of this module will trigger no downloads or compilation unless --reload is specified
<y>Read more:</> <c>https://docs.deno.com/go/cmd/cache</>"), <y>Read more:</> <c>https://docs.deno.com/go/cache</>"),
UnstableArgsConfig::ResolutionOnly, UnstableArgsConfig::ResolutionOnly,
) )
.defer(|cmd| { .defer(|cmd| {
@ -1756,7 +1756,7 @@ fn check_subcommand() -> Command {
Unless --reload is specified, this command will not re-download already cached dependencies Unless --reload is specified, this command will not re-download already cached dependencies
<y>Read more:</> <c>https://docs.deno.com/go/cmd/check</>"), <y>Read more:</> <c>https://docs.deno.com/go/check</>"),
UnstableArgsConfig::ResolutionAndRuntime UnstableArgsConfig::ResolutionAndRuntime
) )
.defer(|cmd| { .defer(|cmd| {
@ -1800,7 +1800,7 @@ Any flags specified which affect runtime behavior will be applied to the resulti
Cross-compiling to different target architectures is supported using the <c>--target</> flag. Cross-compiling to different target architectures is supported using the <c>--target</> flag.
On the first invocation with deno will download the proper binary and cache it in <c>$DENO_DIR</>. On the first invocation with deno will download the proper binary and cache it in <c>$DENO_DIR</>.
<y>Read more:</> <c>https://docs.deno.com/go/cmd/compile</> <y>Read more:</> <c>https://docs.deno.com/go/compile</>
"), "),
UnstableArgsConfig::ResolutionAndRuntime, UnstableArgsConfig::ResolutionAndRuntime,
) )
@ -1907,7 +1907,7 @@ Write a report using the lcov format:
Generate html reports from lcov: Generate html reports from lcov:
<p(245)>genhtml -o html_cov cov.lcov</> <p(245)>genhtml -o html_cov cov.lcov</>
<y>Read more:</> <c>https://docs.deno.com/go/cmd/coverage</>"), <y>Read more:</> <c>https://docs.deno.com/go/coverage</>"),
UnstableArgsConfig::None, UnstableArgsConfig::None,
) )
.defer(|cmd| { .defer(|cmd| {
@ -2000,7 +2000,7 @@ Show documentation for runtime built-ins:
<p(245)>deno doc</> <p(245)>deno doc</>
<p(245)>deno doc --filter Deno.Listener</> <p(245)>deno doc --filter Deno.Listener</>
<y>Read more:</> <c>https://docs.deno.com/go/cmd/doc</>"), <y>Read more:</> <c>https://docs.deno.com/go/doc</>"),
UnstableArgsConfig::ResolutionOnly UnstableArgsConfig::ResolutionOnly
) )
.defer(|cmd| { .defer(|cmd| {
@ -2120,7 +2120,7 @@ To evaluate as TypeScript:
This command has implicit access to all permissions. This command has implicit access to all permissions.
<y>Read more:</> <c>https://docs.deno.com/go/cmd/eval</>" <y>Read more:</> <c>https://docs.deno.com/go/eval</>"
), ),
UnstableArgsConfig::ResolutionAndRuntime, UnstableArgsConfig::ResolutionAndRuntime,
) )
@ -2168,7 +2168,7 @@ Ignore formatting code by preceding it with an ignore comment:
Ignore formatting a file by adding an ignore comment at the top of the file: Ignore formatting a file by adding an ignore comment at the top of the file:
<p(245)>// deno-fmt-ignore-file</> <p(245)>// deno-fmt-ignore-file</>
<y>Read more:</> <c>https://docs.deno.com/go/cmd/fmt</>"), <y>Read more:</> <c>https://docs.deno.com/go/fmt</>"),
UnstableArgsConfig::None, UnstableArgsConfig::None,
) )
.defer(|cmd| { .defer(|cmd| {
@ -2346,7 +2346,7 @@ The following information is shown:
emit: Local path of compiled source code (TypeScript only) emit: Local path of compiled source code (TypeScript only)
dependencies: Dependency tree of the source file dependencies: Dependency tree of the source file
<y>Read more:</> <c>https://docs.deno.com/go/cmd/info</>"), <y>Read more:</> <c>https://docs.deno.com/go/info</>"),
UnstableArgsConfig::ResolutionOnly UnstableArgsConfig::ResolutionOnly
) )
.defer(|cmd| cmd .defer(|cmd| cmd
@ -2580,7 +2580,7 @@ To ignore specific diagnostics, you can write an ignore comment on the preceding
To ignore linting on an entire file, you can add an ignore comment at the top of the file: To ignore linting on an entire file, you can add an ignore comment at the top of the file:
<p(245)>// deno-lint-ignore-file</> <p(245)>// deno-lint-ignore-file</>
<y>Read more:</> <c>https://docs.deno.com/go/cmd/lint</> <y>Read more:</> <c>https://docs.deno.com/go/lint</>
"), "),
UnstableArgsConfig::ResolutionOnly, UnstableArgsConfig::ResolutionOnly,
) )
@ -2740,7 +2740,7 @@ Grant all permissions:
Specifying the filename '-' to read the file from stdin. Specifying the filename '-' to read the file from stdin.
<p(245)>curl https://examples.deno.land/hello-world.ts | deno run -</> <p(245)>curl https://examples.deno.land/hello-world.ts | deno run -</>
<y>Read more:</> <c>https://docs.deno.com/go/cmd/run</>"), UnstableArgsConfig::ResolutionAndRuntime), false) <y>Read more:</> <c>https://docs.deno.com/go/run</>"), UnstableArgsConfig::ResolutionAndRuntime), false)
} }
fn serve_host_validator(host: &str) -> Result<String, String> { fn serve_host_validator(host: &str) -> Result<String, String> {
@ -2764,7 +2764,7 @@ Start a server defined in server.ts:
Start a server defined in server.ts, watching for changes and running on port 5050: Start a server defined in server.ts, watching for changes and running on port 5050:
<p(245)>deno serve --watch --port 5050 server.ts</> <p(245)>deno serve --watch --port 5050 server.ts</>
<y>Read more:</> <c>https://docs.deno.com/go/cmd/serve</>"), UnstableArgsConfig::ResolutionAndRuntime), true, true) <y>Read more:</> <c>https://docs.deno.com/go/serve</>"), UnstableArgsConfig::ResolutionAndRuntime), true, true)
.arg( .arg(
Arg::new("port") Arg::new("port")
.long("port") .long("port")
@ -2833,7 +2833,7 @@ Directory arguments are expanded to all contained files matching the glob <c>{*_
or <c>**/__tests__/**</>: or <c>**/__tests__/**</>:
<p(245)>deno test src/</> <p(245)>deno test src/</>
<y>Read more:</> <c>https://docs.deno.com/go/cmd/test</>"), <y>Read more:</> <c>https://docs.deno.com/go/test</>"),
UnstableArgsConfig::ResolutionAndRuntime UnstableArgsConfig::ResolutionAndRuntime
) )
.defer(|cmd| .defer(|cmd|
@ -3014,7 +3014,7 @@ If you want to not replace the current Deno executable but instead download an u
different location, use the <c>--output</> flag: different location, use the <c>--output</> flag:
<p(245)>deno upgrade --output $HOME/my_deno</> <p(245)>deno upgrade --output $HOME/my_deno</>
<y>Read more:</> <c>https://docs.deno.com/go/cmd/upgrade</>", UPGRADE_USAGE), <y>Read more:</> <c>https://docs.deno.com/go/upgrade</>", UPGRADE_USAGE),
UnstableArgsConfig::None, UnstableArgsConfig::None,
) )
.hide(cfg!(not(feature = "upgrade"))) .hide(cfg!(not(feature = "upgrade")))