-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmix.exs
46 lines (42 loc) · 951 Bytes
/
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
defmodule Rfx.MixProject do
use Mix.Project
def project do
[
app: :rfx,
version: "0.0.1",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
source_url: "https://github.com/andyl/rfx",
docs: docs(),
deps: deps()
]
end
def application do
[
extra_applications: [:logger],
app: nil,
strip_beams: true
]
end
defp deps do
[
# {:sourceror, "~> 0.6"},
{:sourceror, github: "doorgan/sourceror"},
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:mix_test_interactive, "~> 1.0", only: :dev, runtime: false},
{:credo, "~> 1.5", only: [:dev, :test], runtime: false}
]
end
defp docs do
[
main: "readme",
extras: [
"README.md",
"guides/introduction.md",
"guides/refactoring_and_lsp.md",
"guides/related_tools.md",
"guides/edit_functions.md"
]
]
end
end