Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions go.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
"cache": "/runtime/manual/tools/cache",
"check": "/runtime/manual/tools/check",
"commonjs": "/runtime/fundamentals/node/#commonjs-support",
"compile": "/runtime/manual/tools/compiler",
"compile": "/runtime/manual/tools/compile",
"config": "/runtime/fundamentals/configuration/",
"coverage": "/runtime/manual/tools/coverage",
"doc": "/runtime/manual/tools/documentation_generator",
"doc": "/runtime/manual/tools/doc",
"env-vars": "/runtime/reference/env_variables",
"eval": "/runtime/manual/tools/eval",
"fmt": "/runtime/manual/tools/formatter",
"fmt": "/runtime/manual/tools/fmt",
"ide": "/runtime/getting_started/setup_your_environment/#setting-up-your-editor%2Fide",
"import_maps": "/runtime/manual/basics/import_maps",
"info": "/runtime/manual/tools/dependency_inspector",
"lint": "/runtime/manual/tools/linter",
"info": "/runtime/manual/tools/info",
"lint": "/runtime/manual/tools/lint",
"lsp": "/runtime/reference/cli/lsp",
"permissions": "/runtime/fundamentals/security/",
"run": "/runtime/manual/tools/run",
Expand Down
16 changes: 8 additions & 8 deletions runtime/_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const sidebar = [
href: "/runtime/reference/",
items: [
{
label: "Deno CLI",
label: "CLI",
href: "/runtime/reference/cli/",
items: [
{
Expand All @@ -52,7 +52,7 @@ export const sidebar = [
},
{
label: "deno bench",
id: "/runtime/reference/cli/benchmarker/",
id: "/runtime/reference/cli/bench/",
},
{
label: "deno completions",
Expand All @@ -64,27 +64,27 @@ export const sidebar = [
},
{
label: "deno compile",
id: "/runtime/reference/cli/compiler/",
id: "/runtime/reference/cli/compile/",
},
{
label: "deno coverage",
id: "/runtime/reference/cli/coverage/",
},
{
label: "deno doc",
id: "/runtime/reference/cli/documentation_generator/",
id: "/runtime/reference/cli/doc/",
},
{
label: "deno eval",
id: "/runtime/reference/cli/eval/",
},
{
label: "deno fmt",
id: "/runtime/reference/cli/formatter/",
id: "/runtime/reference/cli/fmt/",
},
{
label: "deno info",
id: "/runtime/reference/cli/dependency_inspector/",
id: "/runtime/reference/cli/info/",
},
{
label: "deno init",
Expand All @@ -100,7 +100,7 @@ export const sidebar = [
},
{
label: "deno lint",
id: "/runtime/reference/cli/linter/",
id: "/runtime/reference/cli/lint/",
},
{
label: "deno outdated",
Expand Down Expand Up @@ -132,7 +132,7 @@ export const sidebar = [
},
{
label: "deno task",
id: "/runtime/reference/cli/task_runner/",
id: "/runtime/reference/cli/task/",
},
{
label: "deno test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: "`deno bench`, benchmarking tool"
oldUrl: /runtime/manual/tools/benchmarker/
oldUrl:
- /runtime/manual/tools/benchmarker/
- /runtime/reference/cli/benchmarker/
command: bench
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
title: "`deno compile`, standalone executables"
oldUrl: /runtime/manual/tools/compiler/
oldUrl:
- /runtime/manual/tools/compiler/
- /runtime/reference/cli/check/
- /runtime/reference/cli/compiler/
command: compile
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: "`deno doc`, documentation generator"
oldUrl: /runtime/manual/tools/documentation_generator/
oldUrl:
- /runtime/manual/tools/documentation_generator/
- /runtime/reference/cli/documentation_generator/
command: doc
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: "`deno fmt`, code formatting"
oldUrl:
- /runtime/tools/formatter/
- /runtime/manual/tools/formatter/
- /runtime/reference/cli/formatter/
command: fmt
---

Expand Down
17 changes: 8 additions & 9 deletions runtime/reference/cli/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ below for more information on each subcommand.

- [deno run](/runtime/reference/cli/run/) - run a script
- [deno serve](/runtime/reference/cli/serve/) - run a web server
- [deno task](/runtime/reference/cli/task_runner/) - run a task
- [deno task](/runtime/reference/cli/task/) - run a task
- [deno repl](/runtime/reference/cli/repl/) - starts a read-eval-print-loop
- [deno eval](/runtime/reference/cli/eval/) - evaluate provided script

Expand All @@ -29,23 +29,22 @@ below for more information on each subcommand.

## Tooling

- [deno bench](/runtime/reference/cli/benchmarker/) - benchmarking tool
- [deno bench](/runtime/reference/cli/bench/) - benchmarking tool
- [deno check](/runtime/reference/cli/check/) - type check your program without
running it
- [deno compile](/runtime/reference/cli/compiler/) - compile a program into a
- [deno compile](/runtime/reference/cli/compile/) - compile a program into a
standalone executable
- [deno completions](/runtime/reference/cli/completions/) - generate shell
completions
- [deno coverage](/runtime/reference/cli/coverage/) - generate test coverage
reports
- [deno doc](/runtime/reference/cli/documentation_generator/) - generate
documentation for a module
- [deno fmt](/runtime/reference/cli/formatter/) - format your code
- [deno info](/runtime/reference/cli/dependency_inspector/) - inspect an ES
module and all of its dependencies
- [deno doc](/runtime/reference/cli/doc/) - generate documentation for a module
- [deno fmt](/runtime/reference/cli/fmt/) - format your code
- [deno info](/runtime/reference/cli/info/) - inspect an ES module and all of
its dependencies
- [deno init](/runtime/reference/cli/init/) - create a new project
- [deno jupyter](/runtime/reference/cli/jupyter/) - run a Jupyter notebook
- [deno lint](/runtime/reference/cli/linter/) - lint your code
- [deno lint](/runtime/reference/cli/lint/) - lint your code
- [deno lsp](/runtime/reference/cli/lsp/) - language server protocol integration
- [deno publish](/runtime/reference/cli/publish/) - publish a module to JSR
- [deno test](/runtime/reference/cli/test/) - run your tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: "`deno info`, dependency inspector"
oldUrl: /runtime/manual/tools/dependency_inspector/
oldUrl:
- /runtime/manual/tools/dependency_inspector/
- /runtime/reference/cli/dependency_inspector/
command: info
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ oldUrl:
- /runtime/tools/linter/
- /runtime/fundamentals/linting_and_formatting/lint-cli-ref
- /runtime/manual/tools/linter/
- /runtime/reference/cli/linter/
command: lint
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: "`deno task`"
oldUrl:
- /runtime/tools/task_runner/
- /runtime/manual/tools/task_runner/
- /runtime/reference/cli/task_runner/
command: task
---

Expand Down
2 changes: 1 addition & 1 deletion runtime/reference/cli/unstable_flags.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Sloppy imports will allow (but print warnings for) the following:
- Import a directory path, and automatically use `index.js` or `index.ts` as the
import for that directory

[`deno compile`](/runtime/reference/cli/compiler/) does not support sloppy
[`deno compile`](/runtime/reference/cli/compile/) does not support sloppy
imports.

## `--unstable-unsafe-proto`
Expand Down