-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmix.exs
More file actions
35 lines (32 loc) · 747 Bytes
/
mix.exs
File metadata and controls
35 lines (32 loc) · 747 Bytes
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
defmodule MakeupDemo.Mixfile do
use Mix.Project
def project do
[
app: :makeup_demo,
version: "0.1.0",
elixir: "~> 1.5-rc",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: [extras: ["README.md"]]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :makeup]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:makeup, "~> 1.1"},
{:makeup_elixir, "~> 1.0"},
{:makeup_erlang, "~> 1.0"},
{:makeup_eex, "~> 2.0"},
{:makeup_html, "~> 0.1"},
{:makeup_c, "~> 0.1"},
{:makeup_diff, "~> 0.1"},
{:makeup_json, "~> 0.1"}
]
end
end