Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-04-20 | feat(task): support running npm binary commands in deno.json (#23478) | David Sherret | |
npm binary commands like `vite` from a `node_modules/.bin` folder will now execute when defined in a deno.json Closes https://github.com/denoland/deno/issues/23477 | |||
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 ```  |