Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-18 | fix(flags): don't treat empty run command as task subcommand (#25708) | Leo Kettmeir | |
2024-08-27 | fix(task): support tasks with colons in name in `deno run` (#25233) | Marvin Hagemeister | |
Fix task names containing a colon not being found with `deno run`. We were only checking for a `module not found` error message, but strings containing a colon throw a different error. Fixes https://github.com/denoland/deno/issues/25232 | |||
2024-08-06 | feat: deno run <task> (#24891) | Satya Rohith | |
This PR updates `deno run` to fallback to executing tasks when there is no script with the specified name. If there are both script and a task with the same name then `deno run` will prioritise executing the script. |