-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
142 lines (132 loc) · 3.58 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
defmodule Estructura.MixProject do
use Mix.Project
@app :estructura
@version "1.6.1"
def project do
[
app: @app,
version: @version,
elixir: "~> 1.12",
compilers: compilers(Mix.env()),
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
consolidate_protocols: Mix.env() not in [:dev, :test],
description: description(),
package: package(),
deps: deps(),
aliases: aliases(),
docs: docs(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
credo: :ci,
dialyzer: :ci,
tests: :test,
"coveralls.json": :test,
"coveralls.html": :test,
"hex.publish": :ci,
"quality.ci": :ci
],
releases: [],
dialyzer: [
plt_file: {:no_warn, ".dialyzer/dialyzer.plt"},
plt_add_deps: :app_tree,
plt_add_apps: [:mix],
list_unused_filters: true,
ignore_warnings: ".dialyzer/ignore.exs"
]
]
end
def application do
[extra_applications: []]
end
defp deps do
[
{:stream_data, "~> 1.0"},
{:doctest_formatter, "~> 0.2", runtime: false},
{:jason, "~> 1.0", optional: true},
{:excoveralls, "~> 0.14", only: [:test, :ci], runtime: false},
{:credo, "~> 1.0", only: [:dev, :test, :ci]},
{:dialyxir, "~> 1.0", only: [:dev, :test, :ci], runtime: false},
{:mneme, "~> 0.6", only: [:dev, :test, :ci]},
{:ex_doc, "~> 0.11", only: [:dev, :ci]}
]
end
defp aliases do
[
quality: ["format", "credo --strict", "dialyzer"],
"quality.ci": [
"format --check-formatted",
"credo --strict",
"dialyzer"
]
]
end
defp description do
"""
Extensions for Elixir structures.
"""
end
defp package do
[
name: @app,
files: ~w|lib stuff .formatter.exs .dialyzer/ignore.exs mix.exs README* LICENSE|,
maintainers: ["Aleksei Matiushkin"],
licenses: ["Kantox LTD"],
links: %{
"GitHub" => "https://github.com/am-kantox/#{@app}",
"Docs" => "https://hexdocs.pm/#{@app}"
}
]
end
defp docs do
[
main: "Estructura",
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/#{@app}",
logo: "stuff/#{@app}-48x48.png",
source_url: "https://github.com/am-kantox/#{@app}",
extras: ~w[README.md],
groups_for_modules: [
# Estructura,
# Estructura.Nested,
# Estructura.Aston,
Protocols: [
Estructura.Flattenable,
Estructura.Transformer
],
Generators: [
Estructura.StreamData
],
Lazy: [
Estructura.Lazy,
Estructura.LazyMap
],
Coercers: [
Estructura.Coercer,
Estructura.Coercers.Date,
Estructura.Coercers.Datetime,
Estructura.Coercers.Integer,
Estructura.Coercers.Float,
Estructura.Coercers.Time,
Estructura.Coercers.NullableDate,
Estructura.Coercers.NullableDatetime,
Estructura.Coercers.NullableFloat,
Estructura.Coercers.NullableInteger,
Estructura.Coercers.NullableTime
],
Internals: [
Estructura.Config
],
Examples: [
Estructura.Full,
Estructura.User
]
]
]
end
defp elixirc_paths(:ci), do: ["lib", "test/support"]
defp elixirc_paths(:dev), do: ["lib", "test/support"]
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp compilers(_), do: Mix.compilers()
end