joerdav / xc

Markdown defined task runner.
https://xcfile.dev/
MIT License
1.17k stars 27 forks source link

Running task dependencies async #105

Closed stephenafamo closed 10 months ago

stephenafamo commented 10 months ago

I am testing this out from using Mage, and one thing I liked was that dependencies were run async.

This enabled a nice development experience where I could run mage watch:all and have it run different watchers (server, npm, templates) asynchronously.

However, in XC, it appears that dependencies are run in sequence which means I cannot easily achieve the same unless I write a custom script for this.

Is there a way around this?