From 0e1623dab85d988c0e174690c3369f613d65ea1d Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Sun, 26 Jan 2025 21:07:06 -0500 Subject: [PATCH] docs: clearer description of `adds_deps` and `installs` --- lib/mix/tasks/igniter.gen.task.ex | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/mix/tasks/igniter.gen.task.ex b/lib/mix/tasks/igniter.gen.task.ex index 39f1ae5..f100789 100644 --- a/lib/mix/tasks/igniter.gen.task.ex +++ b/lib/mix/tasks/igniter.gen.task.ex @@ -105,9 +105,11 @@ defmodule Mix.Tasks.Igniter.Gen.Task do # Groups allow for overlapping arguments for tasks by the same author # See the generators guide for more. group: #{inspect(app_name)}, - # dependencies to add + # *other* dependencies to add + # i.e `{:foo, "~> 2.0"}` adds_deps: [], - # dependencies to add and call their associated installers, if they exist + # *other* dependencies to add and call their associated installers, if they exist + # i.e `{:foo, "~> 2.0"}` installs: [], # An example invocation example: @example,