mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 09:57:11 -05:00

Closes #22786. TLDR; ```jsonc { "tasks": { // Some comment // // describing what the task does "dev": "deno run -A --watch main.ts" } } ``` ```bash deno task ``` 
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
|