-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathmix.exs
More file actions
166 lines (149 loc) · 4.29 KB
/
mix.exs
File metadata and controls
166 lines (149 loc) · 4.29 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
defmodule ExDoc.Mixfile do
use Mix.Project
@source_url "https://github.com/elixir-lang/ex_doc"
@version "0.40.1"
def project do
[
app: :ex_doc,
version: @version,
elixir: "~> 1.15",
deps: deps(),
aliases: aliases(),
package: package(),
escript: escript(),
elixirc_paths: elixirc_paths(Mix.env()),
source_url: @source_url,
test_elixirc_options: [docs: true, debug_info: true],
test_ignore_filters: [&String.starts_with?(&1, "test/fixtures/")],
name: "ExDoc",
description: "ExDoc is a documentation generation tool for Elixir",
docs: docs()
]
end
def cli do
[preferred_envs: ["hex.publish": :prod]]
end
def application do
[
extra_applications: [:eex] ++ extra_applications(Mix.env()),
mod: {ExDoc.Application, []}
]
end
defp extra_applications(:test), do: [:edoc, :xmerl]
defp extra_applications(_), do: []
defp deps do
[
{:earmark_parser, "~> 1.4.44"},
{:makeup_elixir, "~> 0.14 or ~> 1.0"},
{:makeup_erlang, "~> 0.1 or ~> 1.0"},
# Add other makeup lexers as optional for the executable
{:makeup_c, ">= 0.1.0", optional: true},
{:makeup_html, ">= 0.1.0", optional: true},
{:jason, "~> 1.2", only: :test},
{:lazy_html, "~> 0.1.0", only: :test}
]
end
defp aliases do
[
build: ["cmd --cd assets npm run build", "compile --force", &docs/1],
clean: [&clean_test_fixtures/1, "clean"],
fix: ["format", "cmd --cd assets npm run lint:fix"],
lint: ["format --check-formatted", "cmd --cd assets npm run lint"],
setup: ["deps.get", "cmd --cd assets npm install"]
]
end
defp package do
[
licenses: ["Apache-2.0"],
maintainers: ["José Valim", "Milton Mazzarri", "Wojtek Mach"],
files: ~w(CHANGELOG.md Cheatsheet.cheatmd formatters lib LICENSE mix.exs README.md),
links: %{
"GitHub" => @source_url,
"Changelog" => "https://hexdocs.pm/ex_doc/changelog.html",
"Writing documentation" => "https://hexdocs.pm/elixir/writing-documentation.html"
}
]
end
defp escript do
[
main_module: ExDoc.CLI
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp docs do
if Mix.env() == :dev do
[
search: [
%{
name: "ExDoc + Elixir",
help: "Search latest ExDoc + Elixir",
packages: [:ex_doc, elixir: "main"]
},
%{
name: "ExDoc on Google",
help: "Search everything about ExDoc on Google",
url: "https://google.com/?q="
},
%{name: "Lunr", help: "Search using Lunr in browser"}
]
]
else
[]
end ++
[
main: "readme",
extras:
[
"README.md",
"Cheatsheet.cheatmd",
"CHANGELOG.md"
] ++ test_dev_examples(Mix.env()),
source_ref: "v#{@version}",
source_url: @source_url,
groups_for_modules: [
Markdown: [
ExDoc.Markdown,
ExDoc.Markdown.Earmark
],
Formatter: [
ExDoc.Formatter,
ExDoc.Formatter.Config
],
Nodes: [
ExDoc.ModuleNode,
ExDoc.DocNode,
ExDoc.DocGroupNode,
ExDoc.ExtraNode,
ExDoc.URLNode
]
],
groups_for_extras: [
Examples: ~r"test/examples"
],
skip_undefined_reference_warnings_on: [
"CHANGELOG.md"
]
]
end
defp docs(args) do
Mix.Task.run("docs", args)
{text_tags, 0} = System.cmd("git", ["tag"])
versions =
for("v" <> rest <- String.split(text_tags), do: Version.parse!(rest))
|> Enum.sort({:desc, Version})
list_contents =
Enum.map_intersperse(versions, ", ", fn version ->
string = Version.to_string(version)
~s[{"version":"v#{string}", "url":"https://hexdocs.pm/ex_doc/#{string}"}]
end)
File.write!("doc/docs_config.js", """
var versionNodes = [#{list_contents}];
""")
end
defp test_dev_examples(:dev), do: Path.wildcard("test/examples/*")
defp test_dev_examples(_), do: []
defp clean_test_fixtures(_args) do
File.rm_rf("test/tmp")
end
end