-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
56 lines (50 loc) · 1.19 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
defmodule ImagePlug.MixProject do
use Mix.Project
@version "0.1.0"
def project do
[
app: :image_plug,
version: @version,
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
docs: [
main: "ImagePlug",
extras: ["README.md"]
],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.html": :test
]
]
end
def application do
[
mod: {ImagePlug.Application, []},
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
[
{:plug, "~> 1.16"},
{:image, "~> 0.37"},
{:req, "~> 0.5"},
{:bandit, "~> 1.0", only: [:test, :dev]},
{:stream_data, "~> 1.0", only: [:test, :dev]},
{:excoveralls, ">= 0.0.0", only: [:test], runtime: false},
{:ex_doc, "~> 0.35", only: :dev, runtime: false}
]
end
defp aliases do
[
setup: ["deps.get"],
test: ["test"]
]
end
end