|
|
|
|
|
by camilomatajira
343 days ago
|
|
Make is still king in 2025.
I don't understand why someone would use Just or Taskfile instead of Make.
My only hypothesis is that people believe (erroneously) that whatever is new is automatically better than what is older. |
|
Task's tracking of the source and the output feels cleaner than make's need for a clean command. I can have a tree of dependent tasks and it will rebuild the ones that are outdated without me doing a "make clean" and having to rebuild all of them.
The ability to include files is clean, though similar can be done in make with some recursion (which works, but I find hacky and hard to keep track of).
I also don't love make's DSL. I don't edit my build files often enough to really keep it in my head, so I feel like I'm constantly trying to remember how to do particular things.
Lastly, I think it's easier to share because even if you've never used Task the YAML is pretty self-descriptive. The first time I saw a Taskfile it wasn't hard to grok how it worked. Make is pretty opaque if you've never seen a Makefile before, and I've met a lot of junior devs that have never interacted with it.