diff options
Diffstat (limited to 'rebar.config')
-rw-r--r-- | rebar.config | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/rebar.config b/rebar.config index 4bd205b..5bd4fab 100644 --- a/rebar.config +++ b/rebar.config @@ -6,10 +6,10 @@ {certifi, "2.0.0"}, {providers, "1.7.0"}, {getopt, "1.0.1"}, - {bbmustache, "1.3.0"}, - {relx, "3.24.4"}, + {bbmustache, "1.5.0"}, + {relx, "3.25.0"}, {cf, "0.2.2"}, - {cth_readable, "1.3.4"}, + {cth_readable, "1.4.2"}, {eunit_formatters, "0.5.0"}]}. {post_hooks, [{"(linux|darwin|solaris|freebsd|netbsd|openbsd)", @@ -22,7 +22,7 @@ ]}. {escript_name, rebar3}. -{escript_emu_args, "%%! +sbtu +A0\n"}. +{escript_emu_args, "%%! +sbtu +A1\n"}. %% escript_incl_extra is for internal rebar-private use only. %% Do not use outside rebar. Config interface is not stable. {escript_incl_extra, [{"relx/priv/templates/*", "_build/default/lib/"}, @@ -54,6 +54,10 @@ {bootstrap, []}, {prod, [ + {escript_incl_extra, [ + {"relx/priv/templates/*", "_build/prod/lib/"}, + {"rebar/priv/templates/*", "_build/prod/lib/"} + ]}, {erl_opts, [no_debug_info]}, {overrides, [ {override, erlware_commons, [ @@ -78,4 +82,3 @@ {add, relx, [{erl_opts, [no_debug_info]}]}]} ]} ]}. - |