From ab1270ef203358ab961690f255d6eccd159534c7 Mon Sep 17 00:00:00 2001 From: Matthew Pope Date: Mon, 2 Sep 2024 10:22:44 -0700 Subject: [PATCH] fix: moving ltest to test deps from main deps --- priv/templates/rebar.config.escript.tpl | 6 +++--- priv/templates/rebar.config.main.tpl | 6 +++--- priv/templates/rebar.config.release.tpl | 6 +++--- priv/templates/rebar.config.tpl | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/priv/templates/rebar.config.escript.tpl b/priv/templates/rebar.config.escript.tpl index f6eeb65..8856f7a 100644 --- a/priv/templates/rebar.config.escript.tpl +++ b/priv/templates/rebar.config.escript.tpl @@ -1,8 +1,7 @@ {erl_opts, [no_debug_info]}. {deps, [ - {lfe, "~> 2.1"}, - {ltest, "~> 0.13"} + {lfe, "~> 2.1"} ]}. {plugins, [ @@ -26,7 +25,8 @@ {profiles, [ {test, [ {deps, [ - {proper, "1.4.0"} + {proper, "1.4.0"}, + {ltest, "~> 0.13"} ]}, {plugins, [ {rebar3_proper, "0.12.1"} diff --git a/priv/templates/rebar.config.main.tpl b/priv/templates/rebar.config.main.tpl index f1b505d..210da5f 100644 --- a/priv/templates/rebar.config.main.tpl +++ b/priv/templates/rebar.config.main.tpl @@ -1,8 +1,7 @@ {erl_opts, [debug_info]}. {deps, [ - {lfe, "~> 2.1"}, - {ltest, "~> 0.13"} + {lfe, "~> 2.1"} ]}. {plugins, [ @@ -25,7 +24,8 @@ {profiles, [ {test, [ {deps, [ - {proper, "1.4.0"} + {proper, "1.4.0"}, + {ltest, "~> 0.13"} ]}, {plugins, [ {rebar3_proper, "0.12.1"} diff --git a/priv/templates/rebar.config.release.tpl b/priv/templates/rebar.config.release.tpl index 9faf5e1..58d456f 100644 --- a/priv/templates/rebar.config.release.tpl +++ b/priv/templates/rebar.config.release.tpl @@ -1,8 +1,7 @@ {erl_opts, [debug_info]}. {deps, [ - {lfe, "~> 2.1"}, - {ltest, "~> 0.13"} + {lfe, "~> 2.1"} ]}. {plugins, [ @@ -43,7 +42,8 @@ ]}, {test, [ {deps, [ - {proper, "1.4.0"} + {proper, "1.4.0"}, + {ltest, "~> 0.13"} ]}, {plugins, [ {rebar3_proper, "0.12.1"} diff --git a/priv/templates/rebar.config.tpl b/priv/templates/rebar.config.tpl index 1a75b07..06cacae 100644 --- a/priv/templates/rebar.config.tpl +++ b/priv/templates/rebar.config.tpl @@ -1,8 +1,7 @@ {erl_opts, [debug_info]}. {deps, [ - {lfe, "~> 2.1"}, - {ltest, "~> 0.13"} + {lfe, "~> 2.1"} ]}. {plugins, [ @@ -21,7 +20,8 @@ {profiles, [ {test, [ {deps, [ - {proper, "1.4.0"} + {proper, "1.4.0"}, + {ltest, "~> 0.13"} ]}, {plugins, [ {rebar3_proper, "0.12.1"}