Replies: 1 comment 7 replies
-
Adding |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As I've started to really use pixi quite a lot, I've been making use the ability to compose a tasks from some core tasks with args.
For example, I have some tools that convert audio files or pack textures. I have a root tasks to clone, build, and then a task to run the tool. Then I have the primary tasks to run the tool on specific source assets, and a final "meta" task to run all of those if desired.
When I run
pixi run
to see a list of defined tasks, it's an explosion of various tasks that hinder the discoverability of what should actually be used to build and run anything.It could be helpful then to have an attribute on tasks that shouldn't be shown by default in this case.
Knowing that
pixi run
can list the available tasks is also a sort of feature that provides an easier view to read thanpixi task list
and since we have bothpixi task list
andpixi run
I'm not fully sure the correct way to surface the ability to mark some tasks as "hidden" or "internal" and additionally make it possible to see all tasks when a user might want to run a task marked as such.So just to be clear and reiterate, the idea is only to have a way to affect the default display of tasks that someone might be expected to run in a project.
Beta Was this translation helpful? Give feedback.
All reactions