You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be tremendously helpful if we could support this:
// deno.jsonc{"tasks": {// Run a dev server"dev": "deno run ...",// Generate a new subcommand"cmd:generate": "deno run ...",// Some other comment, Lorem ipsum dolor sit amet, consectetur adipiscing // elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. // Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi // ut aliquip ex ea commodo consequat."cmd:update": "deno run ...",}}
Currently deno task would output:
Available tasks:
- dev
deno run ...
- cmd:generate
deno run ...
- cmd:update
deno run ...
But it could output:
Available tasks:
- dev
// Run a dev server
deno run ...
- cmd:generate
// Generate a new subcommand
deno run ...
- cmd:update
// Some other comment, Lorem ipsum dolor sit amet, consectetur adipiscing
// elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
// Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi
// ut aliquip ex ea commodo consequat.
deno run ...
This would make discoverability in new projects a lot better and make coming to an older project a breeze.
The text was updated successfully, but these errors were encountered:
It would be tremendously helpful if we could support this:
Currently
deno task
would output:But it could output:
This would make discoverability in new projects a lot better and make coming to an older project a breeze.
The text was updated successfully, but these errors were encountered: