forked from Kr00lIX/assert_html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
91 lines (79 loc) · 2.09 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
84
85
86
87
88
89
90
91
defmodule AssertHTML.MixProject do
use Mix.Project
@version "0.2.0"
@github_url "https://github.com/Kr00lIX/assert_html"
def project do
[
app: :assert_html,
version: @version,
elixir: "~> 1.17",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
# Hex
description: "ExUnit assert helpers for testing rendered HTML.",
source_url: @github_url,
package: package(),
# Docs
name: "AssertHTML",
source_url: @github_url,
docs: docs(),
# Test
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.travis": :test
],
# dev
dialyzer: [
ignore_warnings: ".dialyzer_ignore.exs",
list_unused_filters: true,
remove_defaults: [:unknown]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: []
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:floki, ">= 0.30.0"},
# {:html5ever, "~> 0.15.0"},
# {:fast_html, ">= 0.0.1"},
# Test
{:excoveralls, "~> 0.18", only: :test},
{:junit_formatter, "~> 3.4", only: :test},
{:credo, "~> 1.7", only: [:dev, :test]},
# Dev
{:dialyxir, "~> 1.4", only: :dev, runtime: false},
{:ex_doc, "~> 0.35", only: :dev, runtime: false}
]
end
defp docs do
[
main: "AssertHTML",
source_ref: "v#{@version}",
extras: ["README.md", "CHANGELOG.md"],
source_url: @github_url,
deps: [Floki: "https://hexdocs.pm/floki/Floki.html"]
]
end
# Settings for publishing in Hex package manager:
defp package do
%{
name: "assert_html",
contributors: ["Kr00lIX"],
maintainers: ["Anatolii Kovalchuk"],
links: %{"GitHub" => @github_url},
licenses: ["MIT"],
files: ~w(.formatter.exs mix.exs README.md CHANGELOG.md lib)
}
end
end