Open Yohe-Am opened 6 months ago
// NOTE: whitespace in name task("build front", async () => { /* build frontend */ } ) task("build back", async () => { /* build backend */ })
It'll then be accessed by...
$ ghjk x build front $ ghjk x build back
ghjk x build
ghjk x build --run
build
Originally posted by @Yohe-Am in https://github.com/metatypedev/ghjk/issues/18#issuecomment-1933003330
Consider alternative semantics used by mise.
MET-512 Task groups
It'll then be accessed by...
ghjk x build
, is invoked, list the available tasks.ghjk x build --run
, run all tasks under it in parallel.build
, it overrides this group header task.Originally posted by @Yohe-Am in https://github.com/metatypedev/ghjk/issues/18#issuecomment-1933003330
Consider alternative semantics used by mise.