-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
62 lines (55 loc) · 1.39 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
defmodule Lua.MixProject do
use Mix.Project
@url "https://github.com/tv-labs/lua"
@version "0.0.22"
def project do
[
app: :lua,
version: @version,
elixir: "~> 1.16",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
# Docs
name: "Lua",
description: "The most ergomonic interface to Luerl in Elixir",
source_url: @url,
homepage_url: @url,
package: package(),
docs: [
# The main page in the docs
main: "Lua",
source_url: @url,
source_ref: "v#{@version}",
extras: ["guides/working-with-lua.livemd"]
]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: elixirc_paths(:dev) ++ ["test/support"]
defp elixirc_paths(:dev), do: ["lib", "tasks"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
licenses: ["Apache-2.0"],
maintainers: ["davydog187"],
files: ["lib", "mix.exs", "README.md", "LICENSE"],
links: %{
"GitHub" => @url
}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:luerl, "~> 1.2"},
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
end