We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f13c87 commit e58dc77Copy full SHA for e58dc77
mix.exs
@@ -24,13 +24,16 @@ defmodule ElixirBoilerplate.Mixfile do
24
def application do
25
[
26
mod: {ElixirBoilerplate.Application, []},
27
- extra_applications: [:logger, :runtime_tools]
+ extra_applications: extra_applications(Mix.env()) ++ [:logger, :runtime_tools]
28
]
29
end
30
31
defp elixirc_paths(:test), do: ["lib", "test/support"]
32
defp elixirc_paths(_), do: ["lib"]
33
34
+ defp extra_applications(:dev), do: [:observer, :wx]
35
+ defp extra_applications(_), do: []
36
+
37
defp aliases do
38
39
"assets.deploy": [
0 commit comments