Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-10-02 | chore: remove unnecessary envs in spec tests (#25982) | David Sherret | |
2024-09-15 | fix(cli): `deno task` exit with status 0 (#25637) | Divy Srivastava | |
Fixes https://github.com/denoland/deno/issues/25632 Exit code 1 indiciates some sort of failure but `deno task` (without arguments) is used to list available commands. --------- Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com> | |||
2024-03-27 | feat(task): Task description in the form of comments (#23101) | Nathan Whitaker | |
Closes #22786. TLDR; ```jsonc { "tasks": { // Some comment // // describing what the task does "dev": "deno run -A --watch main.ts" } } ``` ```bash deno task ```  |