-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
95 lines (86 loc) · 2.01 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
defmodule Harness.MixProject do
use Mix.Project
@version_file Path.join(__DIR__, ".version")
@external_resource @version_file
@source_url "https://github.com/NFIBrokerage/harness"
def project do
[
app: :harness,
version: version() || "0.0.0",
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
preferred_cli_env: [
credo: :test,
coveralls: :test,
"coveralls.html": :test,
bless: :test,
test: :test
],
test_coverage: [tool: ExCoveralls],
package: package(),
description: description(),
name: "Harness",
docs: docs()
]
end
defp version do
Regex.run(
~r/^v([\d\.]+)/,
File.read!(@version_file),
capture: :all_but_first
)
|> List.wrap()
|> List.first()
end
defp elixirc_paths(:test), do: ["lib", "test/fixtures"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
extra_applications: [:eex]
]
end
defp deps do
[
# docs
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
# test
{:bless, "~> 1.0", only: :test},
{:convene, "~> 0.2", organization: "cuatro", only: :test},
{:excoveralls, "~> 0.7", only: :test}
]
end
defp package do
[
name: "harness",
files: ~w(lib .formatter.exs mix.exs README.md .version),
licenses: [],
links: %{
"GitHub" => @source_url,
"Changelog" => "#{@source_url}/blob/main/CHANGELOG.md"
}
]
end
defp description do
"A command line tool for harnessing Elixir boilerplate"
end
defp docs do
[
main: "readme",
source_url: @source_url,
deps: [],
extras: [
"README.md",
"CHANGELOG.md",
"guides/Welcome.md",
"guides/About.md",
"guides/GettingStarted.md",
"guides/Manifests.md"
],
groups_for_extras: [
Guides: Path.wildcard("guides/*.md")
]
]
end
end