Skip to content

Commit 33d4fe9

Browse files
committed
Group optional deps in mix.exs
1 parent 74328ba commit 33d4fe9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

mix.exs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,6 @@ defmodule ErrorTracker.MixProject do
8989
{:phoenix_live_view, "~> 1.0"},
9090
{:phoenix_ecto, "~> 4.6"},
9191
{:plug, "~> 1.10"},
92-
{:jason, "~> 1.1", optional: true},
93-
{:postgrex, ">= 0.0.0", optional: true},
94-
{:myxql, ">= 0.0.0", optional: true},
95-
{:ecto_sqlite3, ">= 0.0.0", optional: true},
9692
# Dev dependencies
9793
{:bun, "~> 1.3", only: :dev},
9894
{:credo, "~> 1.7", only: [:dev, :test]},
@@ -101,6 +97,10 @@ defmodule ErrorTracker.MixProject do
10197
{:plug_cowboy, ">= 0.0.0", only: :dev},
10298
{:tailwind, "~> 0.2", only: :dev},
10399
# Optional dependencies
100+
{:jason, "~> 1.1", optional: true},
101+
{:postgrex, ">= 0.0.0", optional: true},
102+
{:myxql, ">= 0.0.0", optional: true},
103+
{:ecto_sqlite3, ">= 0.0.0", optional: true},
104104
{:igniter, "~> 0.5", optional: true}
105105
]
106106
end

0 commit comments

Comments
 (0)