Replies: 1 comment 1 reply
|
Hi @ssbarnea, May not be what you're looking for, but https://taskfile.dev/usage/#doing-task-cleanup-with-defer I know this won't solve the graph use case, though. In theory you could have an option to consider calls like In summary, I don't have an exact solution for what you want. I also don't think I want to build a " |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I recently faced a dilemma related to the fact that the
cmds:I had to run were supposed to run beforedeps:, which is not the normal behavior.I was able to address this issue doing:
Still, I am almost sure that this approach prevents task from recognizing the dependency graph. I mention this because one feature I would like to build is ability to display display a graph, maybe with mermaid like:
Using deps to built such a graph would be easy, but if dependencies are hidden inside cmds, that task is no longer easy.
All reactions