-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
39 lines (35 loc) · 825 Bytes
/
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
defmodule Advent.MixProject do
use Mix.Project
def project do
[
app: :advent,
version: "0.1.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: dialyzer(),
test_coverage: [tool: ExCoveralls]
]
end
def application do
[
extra_applications: [:eex, :logger]
]
end
defp deps do
[
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.15", only: [:test], runtime: false},
{:nimble_parsec, "~> 1.0"},
{:req, "~> 0.5.0"},
{:stream_data, "~> 1.1", only: [:dev, :test], runtime: false}
]
end
defp dialyzer do
[
list_unused_filters: true,
plt_add_apps: [:mix]
]
end
end