-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
31 lines (24 loc) · 696 Bytes
/
rebar.config
File metadata and controls
31 lines (24 loc) · 696 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
{erl_opts, [debug_info, warnings_as_errors]}.
{yrl_opts, [{verbose, true}]}.
{deps, []}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{ex_doc, [
{extras, [
{'README.md', #{title => <<"Overview">>}},
{'LICENSE.md', #{title => <<"License">>}}
]},
{main, <<"README.md">>},
{homepage_url, <<"https://github.com/bel-framework/bel-css">>},
{source_url, <<"https://github.com/bel-framework/bel-css">>},
{api_reference, false}
]}.
{profiles, [
{test, [
{erl_opts, [{extra_src_dirs, ["test/support"]}]}
]}
]}.
{alias, [
{test, [{ct, "--verbose"}, eunit]},
{check, [ct, eunit, dialyzer]}
]}.