Current section
Files
Jump to
Current section
Files
lib/mix/tasks/reach.deps.ex
defmodule Mix.Tasks.Reach.Deps do
@moduledoc """
Removed compatibility task.
Use `mix reach.inspect TARGET --deps` instead.
"""
use Mix.Task
alias Reach.CLI.Deprecation
@dialyzer {:nowarn_function, run: 1}
@shortdoc "Removed; use mix reach.inspect TARGET --deps"
@impl Mix.Task
def run(_args) do
Deprecation.warn("reach.deps TARGET", "reach.inspect TARGET --deps")
end
end