mirror of
https://github.com/sloanelybutsurely/typeid-elixir.git
synced 2024-11-28 01:42:54 -05:00
Make deps available in all environments (#26)
This commit is contained in:
parent
dd8f957106
commit
b91726399f
1 changed files with 4 additions and 4 deletions
8
mix.exs
8
mix.exs
|
@ -43,10 +43,10 @@ defmodule TypeID.MixProject do
|
|||
|
||||
defp deps do
|
||||
[
|
||||
{:ecto, "~> 3.10", only: [:dev, :test], optional: true},
|
||||
{:phoenix_html, "~> 3.3", only: [:dev, :test], optional: true},
|
||||
{:phoenix, "~> 1.7", only: [:dev, :test], optional: true},
|
||||
{:jason, "~> 1.4", only: [:dev, :test], optional: true},
|
||||
{:ecto, "~> 3.10", optional: true},
|
||||
{:phoenix_html, "~> 3.3", optional: true},
|
||||
{:phoenix, "~> 1.7", optional: true},
|
||||
{:jason, "~> 1.4", optional: true},
|
||||
{:ex_doc, "~> 0.27", only: :dev, runtime: false},
|
||||
{:yaml_elixir, "~> 2.9", only: [:dev, :test], runtime: false}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue