wand_core v0.2.1 mix wand_core.deps View Source

Task to load a wand.json file, and return Application deps format. This is used inside a mix.exs to allow wand to work for your project.

Your mix.exs file should look something like this:

def project do
  [
    app: :my_project,
    deps: Mix.Tasks.WandCore.Deps.run([])
    ...
  ]
end

Link to this section Summary

Functions

A task needs to implement run which receives a list of command line args

Link to this section Types

Link to this type dependency() View Source
dependency() ::
  {name(), version()} | {name(), opts()} | {name(), version(), opts()}

Link to this section Functions

A task needs to implement run which receives a list of command line args.

Callback implementation for Mix.Task.run/1.