Add more examples and use-cases in the documentation #2698
Replies: 2 comments
|
+1 Particularly, I'd love some CI examples. |
|
In general, there are few task runners. The most famous being Make was originally a build tool, but with the use of .PHONY targets people just use it as a task runner. There is also Then there is And then go-task (Taskfile).
You may be wondering why not just create a shell script that does this? You can totally do that, but then you have a lot more to think about for example:
The number 1 reason I started using So for someone like me,
|
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Description
Note
This issue is based on my experience.
Context
I was looking for a tool for a personal use-case and I found Task. It looks maintained and well documented, however...
Issue
... I am having some hard time understanding:
Main pages on docs doesn't answer to those questions, neither the FAQ does. There are a few examples on Getting Started but they are very simple.
In fact, the only explanation about "what is Task" is in the website's homepage:
But I have no idea about the advantages using Task instead of Make for "modern workflows".
Consequence
As now:
So I'm not going to use Task:
❌
Because it doesn't fulfill my needs✔️ Because Task advantages, use-cases and limitations, aren't clear to me
All reactions