mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 20:25:12 -05:00
docs: move “Debugger” to “Debugging your code” in “Getting started” (#7421)
This commit is contained in:
parent
fbb18d40d3
commit
7ff0c4d8c8
4 changed files with 4 additions and 4 deletions
|
@ -10,3 +10,4 @@ In this chapter we'll discuss:
|
||||||
- [Understanding permissions](./getting_started/permissions.md)
|
- [Understanding permissions](./getting_started/permissions.md)
|
||||||
- [Using Deno with TypeScript](./getting_started/typescript.md)
|
- [Using Deno with TypeScript](./getting_started/typescript.md)
|
||||||
- [Using WebAssembly](./getting_started/webassembly.md)
|
- [Using WebAssembly](./getting_started/webassembly.md)
|
||||||
|
- [Debugging your code](./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).
|
Deno supports the [V8 Inspector Protocol](https://v8.dev/docs/inspector).
|
||||||
|
|
|
@ -11,7 +11,8 @@
|
||||||
"command_line_interface": "Command line interface",
|
"command_line_interface": "Command line interface",
|
||||||
"permissions": "Permissions",
|
"permissions": "Permissions",
|
||||||
"typescript": "Using TypeScript",
|
"typescript": "Using TypeScript",
|
||||||
"webassembly": "Using WebAssembly"
|
"webassembly": "Using WebAssembly",
|
||||||
|
"debugging_your_code": "Debugging your code"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
|
@ -45,7 +46,6 @@
|
||||||
"tools": {
|
"tools": {
|
||||||
"name": "Tools",
|
"name": "Tools",
|
||||||
"children": {
|
"children": {
|
||||||
"debugger": "Debugger",
|
|
||||||
"script_installer": "Script installer",
|
"script_installer": "Script installer",
|
||||||
"formatter": "Formatter",
|
"formatter": "Formatter",
|
||||||
"bundler": "Bundler",
|
"bundler": "Bundler",
|
||||||
|
|
|
@ -4,7 +4,6 @@ Deno provides some built in tooling that is useful when working with JavaScript
|
||||||
and TypeScript:
|
and TypeScript:
|
||||||
|
|
||||||
- [bundler (`deno bundle`)](./tools/bundler.md)
|
- [bundler (`deno bundle`)](./tools/bundler.md)
|
||||||
- [debugger (`--inspect, --inspect-brk`)](./tools/debugger.md)
|
|
||||||
- [dependency inspector (`deno info`)](./tools/dependency_inspector.md)
|
- [dependency inspector (`deno info`)](./tools/dependency_inspector.md)
|
||||||
- [documentation generator (`deno doc`)](./tools/documentation_generator.md)
|
- [documentation generator (`deno doc`)](./tools/documentation_generator.md)
|
||||||
- [formatter (`deno fmt`)](./tools/formatter.md)
|
- [formatter (`deno fmt`)](./tools/formatter.md)
|
||||||
|
|
Loading…
Add table
Reference in a new issue