-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
83 lines (75 loc) · 1.77 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
defmodule SnapFramework.MixProject do
use Mix.Project
@version "0.3.0-beta.1"
@github "https://github.com/vacarsu/snap_framework"
def project do
[
app: :snap_framework,
name: "SnapFramework",
version: @version,
elixir: "~> 1.13",
package: package(),
description: description(),
docs: docs(),
build_embedded: false,
start_permanent: Mix.env() == :prod,
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env())
]
end
# defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application do
[
# mod: {SnapFramework, []},
extra_applications: [:crypto, :eex]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:scenic, "~> 0.12.0-rc.0"},
{:dialyxir, "~> 1.1", only: :dev, runtime: false},
{:ring_logger, "~> 0.6"},
{:map_diff, "~> 1.3.4"}
]
end
defp description do
"""
A Framework for building for building Scenic applications.
"""
end
defp package do
[
contributors: ["Alex Lopez"],
maintainers: ["Alex Lopez"],
licenses: ["MIT"],
links: %{Github: @github},
files: [
# only include *.ex files
"lib/**/*.ex",
"mix.exs",
"README.md",
"LICENSE"
]
]
end
defp docs do
[
groups_for_modules: [
SnapFramework: [
SnapFramework.Scene,
SnapFramework.Component
],
Engine: [
SnapFramework.Engine,
SnapFramework.Engine.Builder
]
],
source_ref: "v#{@version}",
source_url: @github
]
end
end