From ba77cccd494ac8568186c836e7cda0ed41c1c54d Mon Sep 17 00:00:00 2001 From: Dima Aleksandrov Date: Tue, 19 May 2015 13:17:13 +0200 Subject: [PATCH] always add maps_support to mix compiled build --- mix.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index 3cfbb27..3c2068b 100644 --- a/mix.exs +++ b/mix.exs @@ -13,8 +13,8 @@ use Mix.Project ] end - defp opts(:dev), do: [d: :TEST] - defp opts(_), do: [] + defp opts(:dev), do: [d: :TEST] ++ opts(:prod) + defp opts(_), do: [d: :maps_support, d: :maps_always] defp deps(_), do: [{:mixunit, git: "git@github.com:talentdeficit/mixunit.git", only: :dev}]