refactor(modules)!: allow multiple instances for taskfile & process-compose

This commit is contained in:
technofab 2025-12-19 16:05:00 +01:00
parent 25fb9162ff
commit 5262901404
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
6 changed files with 199 additions and 134 deletions

View file

@ -25,12 +25,9 @@ in {
treefmtWrapper
];
task = {
alias = ",";
tasks = {
"hello" = {
cmd = "echo world!";
};
task.",".tasks = {
"hello" = {
cmd = "echo world!";
};
};
@ -54,7 +51,7 @@ in {
};
};
process-compose.config.processes = {
process-compose."default".config.processes = {
hello.command = "echo 'Hello World'";
pc = {
command = "echo 'From Process Compose'";