View Source Igniter.Mix.Task behaviour (igniter v0.3.58)
A behaviour for implementing a Mix task that is enriched to be composable with other Igniter tasks.
Summary
Callbacks
All the generator behavior happens here, you take an igniter and task arguments, and return an igniter.
Returns an Igniter.Mix.Task.Info
struct, with information used when running the igniter task.
Whether or not it supports being run in the root of an umbrella project
Callbacks
All the generator behavior happens here, you take an igniter and task arguments, and return an igniter.
@callback info(argv :: [String.t()], composing_task :: nil | String.t()) :: Igniter.Mix.Task.Info.t()
Returns an Igniter.Mix.Task.Info
struct, with information used when running the igniter task.
This info will be used to validate arguments in composed tasks.
Use the positional_args!(argv)
to get your positional arguments according to your info.positional
, and the remaining unused args.
Use the options!(argv)
macro to get your parsed options according to your info.schema
.
Important Limitations
- Each task still must parse its own argv in
igniter/2
and must ignore any unknown options. To accomplish this, use the automatically importedoptions!(argv)
macro, which uses theinfo/2
callback to validate args and return options - You cannot use
composes
to list tasks unless they are in your library or in direct dependencies of your library. To validate their options, you must include their options in your own option schema.
@callback installer?() :: boolean()
@callback supports_umbrella?() :: boolean()
Whether or not it supports being run in the root of an umbrella project
At the moment, this is still experimental and we suggest not turning it on.
Functions
Parses the options for the task based on its info.