Roman Geraskin
Roman Geraskin
It will be great to have the ability to exclude something with `.yttignore`. Like `.gitignore` but for ytt.
it's usefull for the tasks that require args. Like ``` # .mise.toml [settings] experimental = true [tasks.pull] run = "docker pull" [tasks.run] depends = ["pull"] run = "docker run --rm"...
You are right. Maybe it's better to add a new option for task to be able to inherit args?
It's ok to use env variable for single arg. But it's not handy to do it with a changeble number of args =( I've added `-q` arg: `mise r run...
yes, and imo it's a responsibility for a mise-user to decide how to set task dependencies. So additional switchers are a way to go. ``` [tasks.pull] run = "docker pull"...
Another idea: just propagate shell args like $1, $2, $$@ and so on to the depends task. Because $1 and $2 are accessible only in task that have been called...
Excited to see your updates on task arguments! Thanks in advance for your work)
Hi! Thanks for your report. I'll check it out.
btw PR for a native Two Pane Right support is here https://github.com/ianyh/Amethyst/pull/1515
Also, `extraConfig` could be used for taints (looks better imo), but not for labels ```yaml machine: kubelet: extraConfig registerWithTaints: - key: hello effect: NoSchedule ```