-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
41 lines (37 loc) · 999 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 ConfigHelpers.MixProject do
use Mix.Project
def project do
[
app: :config_helpers,
version: "1.0.0",
elixir: "~> 1.13",
deps: deps(),
# There is no build-time configuration, so share the build results between environments.
build_per_environment: false,
description: description(),
package: package(),
docs: [
name: "ConfigHelpers",
main: "readme",
source_url: "https://github.com/box-id/config_helpers",
extras: ["README.md"]
]
]
end
defp deps do
[
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:ex_doc, "~> 0.29.2", only: :dev, runtime: false}
]
end
defp description do
"Utility function for writing cleaner `runtime.exs` configs."
end
defp package do
[
files: ~w(lib .formatter.exs mix.exs README.md),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/box-id/config_helpers"}
]
end
end