1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

Removed subcommands, only kept typo fix

This commit is contained in:
Cornelius Krassow 2024-10-31 16:27:15 +01:00
parent 729010a092
commit 0e207b2c89
2 changed files with 0 additions and 6 deletions

View file

@ -1190,7 +1190,6 @@ static DENO_HELP: &str = cstr!(
<g>clean</> Remove the cache directory <g>clean</> Remove the cache directory
<g>compile</> Compile the script into a self contained executable <g>compile</> Compile the script into a self contained executable
<p(245)>deno compile main.ts | deno compile --target=x86_64-unknown-linux-gnu</> <p(245)>deno compile main.ts | deno compile --target=x86_64-unknown-linux-gnu</>
<g>completions</> Output shell completions
<g>coverage</> Print coverage reports <g>coverage</> Print coverage reports
<g>doc</> Generate and show documentation for a module or built-ins <g>doc</> Generate and show documentation for a module or built-ins
<p(245)>deno doc | deno doc --json | deno doc --html mod.ts</> <p(245)>deno doc | deno doc --json | deno doc --html mod.ts</>
@ -1199,11 +1198,9 @@ static DENO_HELP: &str = cstr!(
<g>info</> Show info about cache or info related to source file <g>info</> Show info about cache or info related to source file
<g>jupyter</> Deno kernel for Jupyter notebooks <g>jupyter</> Deno kernel for Jupyter notebooks
<g>lint</> Lint source files <g>lint</> Lint source files
<g>lsp</> Start the language server
<g>init</> Initialize a new project <g>init</> Initialize a new project
<g>test</> Run tests <g>test</> Run tests
<p(245)>deno test | deno test test.ts</> <p(245)>deno test | deno test test.ts</>
<g>types</> Print runtime TypeScript declarations
<g>publish</> Publish the current working directory's package or workspace <g>publish</> Publish the current working directory's package or workspace
<g>upgrade</> Upgrade deno executable to given version <g>upgrade</> Upgrade deno executable to given version
<p(245)>deno upgrade | deno upgrade 1.45.0 | deno upgrade canary</> <p(245)>deno upgrade | deno upgrade 1.45.0 | deno upgrade canary</>

View file

@ -32,9 +32,6 @@ fn help_output() {
"Initialize a new project", "Initialize a new project",
"Run tests", "Run tests",
"Publish the current working directory's package or workspace", "Publish the current working directory's package or workspace",
"Output shell completions",
"Print runtime TypeScript declarations",
"Start the language server",
#[cfg(feature = "upgrade")] #[cfg(feature = "upgrade")]
"Upgrade deno executable to given version", "Upgrade deno executable to given version",
]; ];