This repository has been archived by the owner on Nov 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
66 lines (56 loc) · 1.35 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
defmodule PhoenixSass.MixProject do
use Mix.Project
@version "0.1.8"
@description "Auto-compile Sass to CSS within Phoenix projects without NodeJS"
@repo_url "https://github.com/OldhamMade/phoenix_sass"
def project do
[
app: :phoenix_sass,
version: @version,
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
deps: deps(),
# Hex
package: hex_package(),
description: @description,
# Docs
name: "phoenix_sass",
docs: docs(),
# Coverage
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
def application do
[
extra_applications: [:logger]
]
end
def hex_package do
[
maintainers: ["Phillip Oldham"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => @repo_url},
files: ~w(lib .formatter.exs mix.exs *.md LICENSE)
]
end
defp deps do
[
{:sass_compiler, "~> 0.1"},
{:temp, "~> 0.4", only: :test},
{:excoveralls, "~> 0.10", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
]
end
defp docs do
[extras: ["README.md"],
main: "readme",
source_ref: "v#{@version}",
source_url: @repo_url]
end
end