-
Notifications
You must be signed in to change notification settings - Fork 99
/
mix.exs
94 lines (84 loc) · 2.27 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
defmodule Dataloader.Mixfile do
use Mix.Project
@source_url "https://github.com/absinthe-graphql/dataloader"
@version "2.0.1"
def project do
[
app: :dataloader,
version: @version,
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
aliases: aliases(),
deps: deps(),
docs: docs(),
preferred_cli_env: [
dialyzer: :test
],
dialyzer: [
plt_core_path: "priv/plts",
plt_add_apps: [:mix, :ecto, :ecto_sql, :opentelemetry_process_propagator],
plt_add_deps: :apps_direct
]
]
end
defp package do
[
description: "Efficient batch loading in Elixir",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Ben Wilson"],
licenses: ["MIT"],
links: %{
Changelog: "https://hexdocs.pm/dataloader/changelog.html",
GitHub: @source_url
}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
extra_applications: [:logger] ++ test_apps(Mix.env())
]
end
# TODO: After Elixir 1.8, optional dependencies will be automatically
# included in `extra_applications`. So, it will be safe to remove this
# section.
#
# See: https://github.com/elixir-lang/elixir/pull/8263
defp test_apps(:test) do
[:ecto_sql, :postgrex]
end
defp test_apps(_), do: []
defp deps do
[
{:telemetry, "~> 1.0"},
{:ecto, ">= 3.4.3 and < 4.0.0", optional: true},
{:opentelemetry_process_propagator, "~> 0.3 or ~> 0.2.1", optional: true},
{:ecto_sql, "~> 3.0", optional: true, only: :test},
{:postgrex, "~> 0.14", only: :test, runtime: false},
{:dialyxir, "~> 1.3.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:jason, "~> 1.0", only: :test}
]
end
def docs do
[
extras: [
"CHANGELOG.md",
"README.md",
"guides/telemetry.md"
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}"
]
end
defp aliases do
[
"ecto.setup": ["ecto.create", "ecto.migrate"],
"ecto.reset": ["ecto.drop", "ecto.setup"]
]
end
end