-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
100 lines (90 loc) · 2.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
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
defmodule OctoFetch.MixProject do
use Mix.Project
def project do
[
app: :octo_fetch,
version: "0.4.0",
elixir: "~> 1.13",
name: "OctoFetch",
source_url: "https://github.com/akoutmos/octo_fetch",
homepage_url: "https://hex.pm/packages/octo_fetch",
description: "Download, verify, and extract GitHub release artifacts effortlessly right from Elixir",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.github": :test
],
dialyzer: [
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
],
package: package(),
deps: deps(),
docs: docs(),
aliases: aliases()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :inets, :public_key]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# Production dependencies
{:castore, "~> 0.1 or ~> 1.0"},
{:ssl_verify_fun, "~> 1.1"},
# Development dependencies
{:ex_doc, "~> 0.30.9", only: :dev},
{:excoveralls, "~> 0.18.0", only: :test, runtime: false},
{:credo, "~> 1.7.1", only: :dev},
{:dialyxir, "~> 1.4.2", only: :dev, runtime: false},
{:git_hooks, "~> 0.7.3", only: [:test, :dev], runtime: false}
]
end
defp docs do
[
main: "readme",
source_ref: "master",
logo: "guides/images/logo.svg",
extras: [
"README.md"
]
]
end
defp package do
[
name: "octo_fetch",
files: ~w(lib mix.exs README.md LICENSE CHANGELOG.md),
licenses: ["MIT"],
maintainers: ["Alex Koutmos"],
links: %{
"GitHub" => "https://github.com/akoutmos/octo_fetch",
"Sponsor" => "https://github.com/sponsors/akoutmos"
}
]
end
defp aliases do
[
docs: ["docs", ©_files/1]
]
end
defp copy_files(_) do
# Set up directory structure
File.mkdir_p!("./doc/guides/images")
# Copy over image files
"./guides/images/"
|> File.ls!()
|> Enum.each(fn image_file ->
File.cp!("./guides/images/#{image_file}", "./doc/guides/images/#{image_file}")
end)
end
end