-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
41 lines (36 loc) · 930 Bytes
/
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
defmodule ConfigSmuggler.MixProject do
use Mix.Project
@github_repo "https://github.com/appcues/config_smuggler"
def project do
[
app: :config_smuggler,
version: "1.1.0",
description:
"ConfigSmuggler converts Elixir-style configuration statements to and from string-encoded key/value pairs.",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
dialyzer: [plt_add_apps: [:mix]],
aliases: [docs: "docs --source-url #{@github_repo}"]
]
end
def package do
[
licenses: ["MIT"],
maintainers: ["Appcues <[email protected]>"],
links: %{github: @github_repo}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:dialyxir, "~> 1.1", only: :dev, runtime: false},
{:ex_doc, "~> 0.26", only: :dev, runtime: false}
]
end
end