diff options
-rw-r--r-- | docs/getting_started.md | 1 | ||||
-rw-r--r-- | docs/getting_started/debugging_your_code.md (renamed from docs/tools/debugger.md) | 2 | ||||
-rw-r--r-- | docs/toc.json | 4 | ||||
-rw-r--r-- | docs/tools.md | 1 |
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/getting_started.md b/docs/getting_started.md index 2643a22ca..1da9147bb 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -10,3 +10,4 @@ In this chapter we'll discuss: - [Understanding permissions](./getting_started/permissions.md) - [Using Deno with TypeScript](./getting_started/typescript.md) - [Using WebAssembly](./getting_started/webassembly.md) +- [Debugging your code](./getting_started/debugging_your_code.md) diff --git a/docs/tools/debugger.md b/docs/getting_started/debugging_your_code.md index 2a4c7f0d8..920f55624 100644 --- a/docs/tools/debugger.md +++ b/docs/getting_started/debugging_your_code.md @@ -1,4 +1,4 @@ -## Debugger +## Debugging your code Deno supports the [V8 Inspector Protocol](https://v8.dev/docs/inspector). diff --git a/docs/toc.json b/docs/toc.json index 626530a38..331629fcf 100644 --- a/docs/toc.json +++ b/docs/toc.json @@ -11,7 +11,8 @@ "command_line_interface": "Command line interface", "permissions": "Permissions", "typescript": "Using TypeScript", - "webassembly": "Using WebAssembly" + "webassembly": "Using WebAssembly", + "debugging_your_code": "Debugging your code" } }, "runtime": { @@ -45,7 +46,6 @@ "tools": { "name": "Tools", "children": { - "debugger": "Debugger", "script_installer": "Script installer", "formatter": "Formatter", "bundler": "Bundler", diff --git a/docs/tools.md b/docs/tools.md index 76f54e6bc..e64c9d840 100644 --- a/docs/tools.md +++ b/docs/tools.md @@ -4,7 +4,6 @@ Deno provides some built in tooling that is useful when working with JavaScript and TypeScript: - [bundler (`deno bundle`)](./tools/bundler.md) -- [debugger (`--inspect, --inspect-brk`)](./tools/debugger.md) - [dependency inspector (`deno info`)](./tools/dependency_inspector.md) - [documentation generator (`deno doc`)](./tools/documentation_generator.md) - [formatter (`deno fmt`)](./tools/formatter.md) |