-
Notifications
You must be signed in to change notification settings - Fork 10
/
mix.exs
48 lines (42 loc) · 1.06 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
defmodule ExGuard.Mixfile do
use Mix.Project
@version "1.6.1"
def project do
[
app: :ex_guard,
version: @version,
elixir: "~> 1.3",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: description(),
name: "ExGuard",
docs: [source_ref: "v#{@version}", main: "Mix.Tasks.Guard", logo: "logo-white.png"],
source_url: "https://github.com/slashmili/ex_guard"
]
end
def application do
[]
end
defp deps do
[
{:fs, "~> 8.6.1"},
{:ex_doc, "~> 0.31.0", only: :dev},
{:earmark, "~> 1.4.12", only: :dev}
]
end
defp package do
[
maintainers: ["Milad Rastian"],
licenses: ["MIT"],
links: %{github: "https://github.com/slashmili/ex_guard"},
files: ~w(lib priv LICENSE mix.exs logo-white.png) ++ ~w(mix.exs README.md)
]
end
defp description do
"""
ExGuard automates various tasks by running custom rules whenever file or directories are modified.
"""
end
end