-
Notifications
You must be signed in to change notification settings - Fork 334
/
Copy pathmix.exs
138 lines (121 loc) · 3.64 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
defmodule ExDoc.Mixfile do
use Mix.Project
@source_url "https://github.com/elixir-lang/ex_doc"
@version "0.37.0-rc.0"
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.42"},
{: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},
{:floki, "~> 0.0", only: :test},
{:easyhtml, "~> 0.0", only: :test}
]
end
defp aliases do
[
build: ["cmd --cd assets npm run build", "compile --force", "docs", &add_docs_config_js/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
[
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
]
],
groups_for_extras: [
Examples: ~r"test/examples"
],
skip_undefined_reference_warnings_on: [
"CHANGELOG.md"
]
]
end
defp add_docs_config_js(_args) do
{text_tags, 0} = System.cmd("git", ["tag"])
[latest | _] =
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}];
var searchNodes = [{"name":"ex_doc","version":"#{Version.to_string(latest)}"}];
""")
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