forked from elixir-lang/ex_doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
117 lines (104 loc) · 2.57 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
defmodule ExDoc.Mixfile do
use Mix.Project
@version "0.19.3"
def project do
[
app: :ex_doc,
version: @version,
elixir: "~> 1.7",
deps: deps(),
aliases: aliases(),
package: package(),
escript: escript(),
source_url: "https://github.com/elixir-lang/ex_doc/",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test],
description: "ExDoc is a documentation generation tool for Elixir",
xref: [exclude: [Cmark]],
docs: docs()
]
end
def application do
[]
end
defp deps do
[
{:earmark, "~> 1.2"},
{:makeup_elixir, "~> 0.10"},
{:cmark, "~> 0.5", only: :test},
{:excoveralls, "~> 0.3", only: :test}
]
end
defp aliases do
[
clean: [&clean_test_fixtures/1, "clean"],
setup: ["deps.get", &setup_assets/1],
build: [&build_assets/1, "compile --force", "docs"]
]
end
defp package do
[
licenses: ["Apache 2.0"],
maintainers: [
"José Valim",
"Eksperimental",
"Milton Mazzarri",
"Friedel Ziegelmayer",
"Dmitry"
],
files: ["formatters", "lib", "mix.exs", "LICENSE", "CHANGELOG.md", "README.md"],
links: %{
"GitHub" => "https://github.com/elixir-lang/ex_doc",
"Writing documentation" => "https://hexdocs.pm/elixir/writing-documentation.html"
}
]
end
defp escript do
[
main_module: ExDoc.CLI
]
end
defp docs do
[
main: "readme",
extras: [
"README.md",
"CHANGELOG.md"
],
source_ref: "v#{@version}",
source_url: "https://github.com/elixir-lang/ex_doc",
groups_for_modules: [
Markdown: [
ExDoc.Markdown,
ExDoc.Markdown.Cmark,
ExDoc.Markdown.Earmark
],
"Formatter API": [
ExDoc.Config,
ExDoc.Formatter.EPUB,
ExDoc.Formatter.HTML,
ExDoc.Formatter.HTML.Autolink,
ExDoc.FunctionNode,
ExDoc.ModuleNode,
ExDoc.TypeNode
]
]
]
end
defp clean_test_fixtures(_args) do
File.rm_rf("test/tmp")
end
defp setup_assets(_args) do
cmd("npm", ~w(install))
end
defp build_assets(_args) do
cmd("npm", ~w(run build))
end
defp cmd(cmd, args, opts \\ []) do
opts = Keyword.merge([into: IO.stream(:stdio, :line), stderr_to_stdout: true], opts)
{_, result} = System.cmd(cmd, args, opts)
if result != 0 do
raise "Non-zero result (#{result}) from: #{cmd} #{Enum.map_join(args, " ", &inspect/1)}"
end
end
end