this post was submitted on 14 Jun 2023
4 points (100.0% liked)
Dart Programming Language
132 readers
1 users here now
This sublemmy is a place for everything related to the Dart programming language and its tools besides Flutter (use [email protected] for that)
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I've been using makefiles for a while and find them pretty good. The only downside is adding any arguments to recipes (passed when executing them) is tricky. On the other hand, there was only one scenario where that could be useful (
release-staging
from below), but I managed to get what I wanted without arguments. I like makefiles for portability and automatic shell completion for fish.Here's a Makefile from one of the projects I'm working on to give a better idea of my usage:
yes makefile is a more popular and standard way and in most cases is a better choice. but I love new experiments specially in Dart and want to give them a shot. here's an issue regarding derry vs other solutions
Yup, that makes sense!