-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
94 lines (83 loc) · 2.25 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
defmodule Zoneinfo.MixProject do
use Mix.Project
@version "0.1.8"
@source_url "https://github.com/smartrent/zoneinfo"
def project do
[
app: :zoneinfo,
version: @version,
elixir: "~> 1.13",
description: description(),
package: package(),
compilers: compilers(Mix.env()),
aliases: aliases(),
make_targets: ["all"],
make_clean: ["clean"],
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: dialyzer(),
docs: docs(),
preferred_cli_env: %{
docs: :docs,
"hex.publish": :docs,
"hex.build": :docs
}
]
end
defp aliases() do
[bench: ["run bench/bench.exs"]]
end
def compilers(env) when env in [:dev, :test] do
[:elixir_make | Mix.compilers()]
end
def compilers(_env), do: Mix.compilers()
def application() do
[mod: {Zoneinfo.Application, []}]
end
defp description do
"Elixir time zone support that uses OS-supplied zoneinfo files"
end
defp dialyzer() do
[
flags: [:missing_return, :extra_return, :unmatched_returns, :error_handling, :underspecs],
list_unused_filters: true,
plt_add_apps: [:mix]
]
end
defp package do
%{
# The file list is the default minus the Makefile which is only for dev/test
files: [
"lib",
"mix.exs",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
}
end
defp deps do
[
# No prod dependencies. These are only for dev and test.
{:benchee, "~> 1.0", only: :dev},
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1", only: :dev, runtime: false},
{:ex_doc, "~> 0.22", only: :docs, runtime: false},
{:elixir_make, "> 0.6.0", only: [:dev, :test]},
# Locked dependencies to guarantee that tz and tzdata use the same IANA time zone database
# It's ok to update. Change the version in the Makefile.
{:tz, "0.23.0", only: [:dev, :test]},
{:tzdata, "~> 1.1.0", only: [:dev, :test]}
]
end
defp docs do
[
extras: ["README.md", "CHANGELOG.md"],
main: "readme",
source_ref: "v#{@version}",
source_url: @source_url
]
end
end