Dart script managers
I was recently looking into Dart CLI tools and script managers and found a few interesting options. These can really impact productivity and ease of use.
I have personally used Derry to replace some long commands to generate native libs etc. There are other options like Slidy, but haven't used them.
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-stagingfrom 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!