This website requires JavaScript.
Explore
Help
Sign in
foster
/
denoland-deno
Watch
1
Star
0
Fork
You've already forked denoland-deno
0
mirror of
https://github.com/denoland/deno.git
synced
2024-12-03 17:08:35 -05:00
Code
Issues
Packages
1
Wiki
Activity
16e16690af
denoland-deno
/
tests
/
specs
/
run
/
run_task
/
deno.json
7 lines
88 B
JSON
Raw
Normal View
History
Unescape
Escape
feat: deno run <task> (#24891) 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.
2024-08-06 11:05:30 -04:00
{
"tasks"
:
{
fix(task): support tasks with colons in name in `deno run` (#25233) 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-27 05:27:10 -04:00
"main"
:
"deno run main.ts"
,
"main:foo"
:
"deno run main.ts"
feat: deno run <task> (#24891) 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.
2024-08-06 11:05:30 -04:00
}
}
Copy permalink