-
Notifications
You must be signed in to change notification settings - Fork 17
/
mix.exs
72 lines (65 loc) · 1.66 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
defmodule Absinthe.Federation.MixProject do
use Mix.Project
@source_url "https://github.com/DivvyPayHQ/absinthe_federation"
@version "0.5.4"
def project do
[
app: :absinthe_federation,
version: @version,
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
elixirc_options: [warnings_as_errors: true],
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
package: package(),
docs: docs(),
deps: deps(),
dialyzer: [
plt_add_apps: [:mix, :ex_unit],
plt_local_path: "priv/plts/local",
plt_core_path:
if Mix.env() == :test do
"priv/plts/core"
end
]
]
end
defp package do
[
description: "Apollo Federation support for Absinthe",
files: [
"lib",
"*.exs",
"*.md"
],
maintainers: ["Doruk Gurleyen", "Eric Wolf"],
licenses: ["MIT"],
links: %{github: @source_url}
]
end
defp docs do
[
source_ref: "v#{@version}",
main: "readme",
source_url: @source_url,
extras: ["README.md", "CONTRIBUTING.md", "LICENSE.md", "CODE_OF_CONDUCT.md"]
]
end
def application do
[
extra_applications: [:logger]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:absinthe, "~> 1.7"},
{:dataloader, "~> 1.0.9 or ~> 1.0.10 or ~> 2.0"},
# Dev
{:dialyxir, ">= 1.0.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.29", only: :dev, runtime: false}
]
end
end