You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A few versions ago we were allowed to change our tasks in deno.json from just a string of concatenated commands to an object that lists dependencies to be ran before the command. At the moment though these dependant tasks can only be executed as is. It would be nice if we could pass additional flags to it while still keeping that parallelism this change enabled.
Example
In this below example, deno task cov shows what I'm asking. Where both coverage and clean flags are passed to it. Allowing them to only be generated if viewing the coverage is desired.
A few versions ago we were allowed to change our tasks in
deno.json
from just a string of concatenated commands to an object that lists dependencies to be ran before the command. At the moment though these dependant tasks can only be executed as is. It would be nice if we could pass additional flags to it while still keeping that parallelism this change enabled.Example
In this below example,
deno task cov
shows what I'm asking. Where both coverage and clean flags are passed to it. Allowing them to only be generated if viewing the coverage is desired.The text was updated successfully, but these errors were encountered: