-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
35 lines (32 loc) · 868 Bytes
/
mix.exs
File metadata and controls
35 lines (32 loc) · 868 Bytes
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
defmodule Exit.MixProject do
use Mix.Project
def project do
[
app: :exit,
version: "0.4.2",
elixir: "~> 1.19",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: [
maintainers: ["Matthew Graham"],
description: "A set of common utility functions for iterating enumerables",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mdg/exit"},
],
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:dialyxir, "~> 1.4", only: :dev, runtime: false},
{:ex_doc, "~> 0.32", only: :dev, runtime: false},
{:freedom_formatter, "~> 2.1", only: [:dev, :test], runtime: false},
]
end
end