mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
b3f1f3ba04
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.
13 lines
234 B
Text
13 lines
234 B
Text
{
|
|
"tests": {
|
|
"deno_run_task": {
|
|
"args": "run main",
|
|
"output": "main.out"
|
|
},
|
|
"deno_run_module_task_not_found": {
|
|
"args": "run not_found",
|
|
"output": "not_found.out",
|
|
"exitCode": 1
|
|
}
|
|
}
|
|
}
|