-
Notifications
You must be signed in to change notification settings - Fork 13
/
mix.exs
104 lines (92 loc) · 2.5 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
defmodule Cldr.Units.Mixfile do
use Mix.Project
@version "3.17.2"
def project do
[
app: :ex_cldr_units,
version: @version,
elixir: "~> 1.12",
name: "Cldr Units",
source_url: "https://github.com/elixir-cldr/cldr_units",
description: description(),
package: package(),
docs: docs(),
start_permanent: Mix.env() == :prod,
deps: deps(),
xref: [exclude: [Phoenix.HTML.Safe]],
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: [
ignore_warnings: ".dialyzer_ignore_warnings",
plt_add_apps: ~w(inets jason mix)a,
flags: [
:error_handling,
:unknown,
:underspecs,
:extra_return,
:missing_return
]
]
]
end
defp description do
"""
Unit formatting (volume, area, length, ...), conversion and arithmetic
functions based upon the Common Locale Data Repository (CLDR).
"""
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
# {:ex_cldr_numbers, path: "../cldr_numbers", override: true},
{:ex_cldr_numbers, "~> 2.33.0"},
# {:cldr_utils, path: "../cldr_utils", override: true},
{:cldr_utils, "~> 2.25"},
{:ex_cldr_lists, "~> 2.10"},
{:decimal, "~> 1.6 or ~> 2.0"},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.18", optional: true, runtime: false},
{:jason, "~> 1.0", optional: true},
{:benchee, "~> 1.0", optional: true, only: :dev}
]
end
defp package do
[
maintainers: ["Kip Cole"],
licenses: ["Apache-2.0"],
links: links(),
files: [
"lib",
"priv",
"config",
"mix.exs",
"README*",
"CHANGELOG*",
"LICENSE*"
]
]
end
def docs do
[
source_ref: "v#{@version}",
main: "readme",
extras: ["README.md", "CHANGELOG.md", "LICENSE.md"],
logo: "logo.png",
formatters: ["html"],
skip_undefined_reference_warnings_on: ["changelog", "CHANGELOG.md"]
]
end
def links do
%{
"GitHub" => "https://github.com/elixir-cldr/cldr_units",
"Readme" => "https://github.com/elixir-cldr/cldr_units/blob/v#{@version}/README.md",
"Changelog" => "https://github.com/elixir-cldr/cldr_units/blob/v#{@version}/CHANGELOG.md"
}
end
defp elixirc_paths(:test), do: ["lib", "mix", "test"]
defp elixirc_paths(:dev), do: ["lib", "mix"]
defp elixirc_paths(_), do: ["lib"]
end