-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
84 lines (75 loc) · 1.9 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
defmodule Commandex.MixProject do
use Mix.Project
@source_url "https://github.com/codedge-llc/commandex"
@version "0.5.1"
def project do
[
app: :commandex,
deps: deps(),
dialyzer: dialyzer(),
docs: docs(),
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
name: "Commandex",
package: package(),
source_url: "https://github.com/codedge-llc/commandex",
start_permanent: Mix.env() == :prod,
test_coverage: test_coverage(),
version: @version
]
end
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ex_doc, "~> 0.31", only: :dev}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp dialyzer do
[
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
]
end
defp docs do
[
extras: [
"CHANGELOG.md",
LICENSE: [title: "License"]
],
formatters: ["html"],
main: "Commandex",
skip_undefined_reference_warnings_on: ["CHANGELOG.md"],
source_ref: "v#{@version}",
source_url: @source_url
]
end
defp package do
[
description: "Make complex actions a first-class data type.",
files: ["lib", "mix.exs", ".formatter.exs", "README*", "LICENSE*", "CHANGELOG*"],
licenses: ["MIT"],
links: %{
"Changelog" => "https://hexdocs.pm/commandex/changelog.html",
"GitHub" => "https://github.com/codedge-llc/commandex",
"Sponsor" => "https://github.com/sponsors/codedge-llc"
},
maintainers: ["Henry Popp", "Tyler Hurst"]
]
end
defp test_coverage do
[
ignore_modules: [
GenerateReport,
RegisterUser
],
summary: [threshold: 70]
]
end
def application do
[
extra_applications: [:logger]
]
end
end