mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
2dc37f411e
Closes #22786. TLDR; ```jsonc { "tasks": { // Some comment // // describing what the task does "dev": "deno run -A --watch main.ts" } } ``` ```bash deno task ``` ![Screenshot 2024-03-27 at 1 43 49 PM](https://github.com/denoland/deno/assets/17734409/7a14da8c-8e63-45ba-9bfb-590d250b56a9)
9 lines
166 B
Text
9 lines
166 B
Text
Available tasks:
|
|
- lint
|
|
// this task has documentation
|
|
//
|
|
// in the form of comments
|
|
deno lint
|
|
- fmt
|
|
// block comments are fine too
|
|
deno fmt
|