Skip to content

Commit

Permalink
update mix to support cache. hopefully no issue long terms
Browse files Browse the repository at this point in the history
  • Loading branch information
epinault committed Dec 4, 2024
1 parent 5763c92 commit 30687b0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ defmodule GraphqlMarkdown.MixProject do
docs: docs(),
package: package(),
test_coverage: [summary: [threshold: 85]],
dialyzer: [plt_add_apps: [:mix]]
dialyzer: [
ignore_warnings: ".dialyzer.ignore-warnings",
list_unused_filters: true,
plt_add_apps: [:mix],
plt_file: {:no_warn, "priv/plts/project.plt"},
plt_core_path: "priv/plts/core.plt"
]
]
end

Expand All @@ -31,7 +37,7 @@ defmodule GraphqlMarkdown.MixProject do
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev], runtime: false},
{:ex_doc, "~> 0.30", only: [:dev, :test], runtime: false},
{:jason, "~> 1.4"}
]
Expand Down

0 comments on commit 30687b0

Please sign in to comment.