drake
drake copied to clipboard
Drake is a make-like task runner for Deno.
Instead of logging tasks like 'start task1' and 'end task1', output will now be like '::group::task1' and '::endgroup::' when the -g flag is given. This should resolve #9 .
It would be nice to support the following: ```ts task("namer", [], function() { return "world!"; }); task("greet", ["namer"], function(named: any) { console.log("Hello,", named); }); ``` So, the return value of...
Drake always logs target names before executing the targets. It would be cool if those targets is collapsible/expandible in GitHub Actions, like so: target 1 target 1 logs target 2...
I use docker to deploy deno app, I use Drake for automation some task I want to run when deploy, But when I use sh to run command line, I...