Skip to content

Commit

Permalink
deps: fix bad declaration of deps
Browse files Browse the repository at this point in the history
  • Loading branch information
c4710n committed Dec 6, 2023
1 parent 29cfaa7 commit deddc8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ defmodule FsBuild.MixProject do

defp deps do
[
{:earmark, "~> 1.4", only: [:dev, :test]},
{:makeup, "~> 1.0", only: [:dev, :test]},
{:makeup_elixir, ">= 0.0.0", only: [:dev, :test]},
{:earmark, "~> 1.4", optional: true},
{:makeup, "~> 1.0", optional: true},
{:makeup_elixir, ">= 0.0.0", only: [:test]},
{:ex_check, "~> 0.15.0", only: [:dev], runtime: false},
{:ex_doc, "~> 0.21", only: [:dev]},
{:credo, ">= 0.0.0", only: [:dev], runtime: false},
Expand Down

0 comments on commit deddc8f

Please sign in to comment.