-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
103 lines (92 loc) · 2.3 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
defmodule DataBuffer.MixProject do
use Mix.Project
@version "0.7.1"
def project do
[
app: :data_buffer,
version: @version,
elixir: "~> 1.16",
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: dialyzer(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
preferred_cli_env: preferred_cli_env(),
deps: deps(),
description: description(),
package: package(),
name: "DataBuffer",
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp dialyzer do
[
plt_file: {:no_warn, "dialyzer/dialyzer.plt"},
plt_add_apps: [:ex_unit, :mix]
]
end
defp description do
"""
DataBuffer provides an efficient way to buffer persistable data.
"""
end
defp docs do
[
extras: ["README.md"],
main: "readme",
source_url: "https://github.com/nsweeting/data_buffer"
]
end
defp package do
[
files: ["lib", "mix.exs", "README*"],
maintainers: ["Nicholas Sweeting"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/nsweeting/data_buffer"}
]
end
# Aliases are shortcuts or tasks specific to the current project.
defp aliases do
[
setup: [
"local.hex --if-missing --force",
"local.rebar --if-missing --force",
"deps.get"
],
ci: [
"setup",
"compile --warnings-as-errors",
"format --check-formatted",
"credo --strict",
"test",
"dialyzer --format github",
"sobelow --config"
]
]
end
# Specifies the preferred env for mix commands.
defp preferred_cli_env do
[
ci: :test
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:keyword_validator, "~> 2.0"},
{:telemetry, "~> 1.2"},
{:benchee, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.22", only: :dev, runtime: false},
{:credo, "~> 1.7.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4.1", only: [:dev, :test], runtime: false},
{:sobelow, "~> 0.13.0", only: [:dev, :test], runtime: false}
]
end
end