-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
70 lines (62 loc) · 1.48 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
defmodule Tectonic.MixProject do
use Mix.Project
@version "0.2.2"
@source_url "https://github.com/frankdugan3/tectonic"
def project do
[
app: :tectonic,
version: @version,
elixir: "~> 1.17",
deps: deps(),
docs: docs(),
description: "Mix tasks for installing and invoking tectonic",
package: [
links: %{
"GitHub" => @source_url,
"tectonic" => "https://tectonic-typesetting.github.io"
},
licenses: ["MIT"]
],
aliases: [test: ["tectonic.install --if-missing", "test"]]
]
end
defp docs do
[
main: "about",
source_url: @source_url,
source_ref: "v#{@version}",
extras: ["CHANGELOG.md"],
output: "doc",
extra_section: "Guides",
extras: extras()
]
end
defp extras do
ordered =
[
{"documentation/about.md", [default: true]},
"documentation/tutorials/get-started.md",
"CHANGELOG.md"
]
unordered = Path.wildcard("documentation/**/*.{md,cheatmd,livemd}")
Enum.uniq_by(ordered ++ unordered, fn
{file, _opts} -> file
file -> file
end)
end
def application do
[
extra_applications: [:logger, inets: :optional, ssl: :optional],
mod: {Tectonic, []},
env: [default: []]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :docs},
{:git_ops, "~> 2.6.1", only: :dev},
{:castore, ">= 0.0.0"},
{:igniter, "~> 0.3"}
]
end
end