mirror of
https://github.com/valitydev/psql-migration.git
synced 2024-11-06 01:05:18 +00:00
33 lines
644 B
Erlang
33 lines
644 B
Erlang
%% -*- erlang -*-
|
|
{erl_opts, [
|
|
debug_info,
|
|
warnings_as_errors
|
|
]}.
|
|
|
|
{plugins, [erlfmt]}.
|
|
|
|
{deps, [
|
|
{envloader, {git, "https://github.com/nuex/envloader.git", {branch, "master"}}},
|
|
eql,
|
|
getopt,
|
|
epgsql
|
|
]}.
|
|
|
|
{escript_incl_apps, [psql_migration]}.
|
|
{escript_main_app, psql_migration}.
|
|
{escript_name, psql_migration}.
|
|
{escript_emu_args, "%%! +sbtu +A1\n"}.
|
|
|
|
{provider_hooks, [{post, [{compile, escriptize}]}]}.
|
|
|
|
{xref_checks, [
|
|
undefined_function_calls,
|
|
undefined_functions,
|
|
locals_not_used,
|
|
deprecated_function_calls,
|
|
deprecated_functions
|
|
]}.
|
|
|
|
%% Profiles
|
|
{profiles, [{test, [{erl_opts, [debug_info]}]}]}.
|