Skip to content

Commit

Permalink
Merge pull request #142 from allenwyma/bugfix/propcheck-error
Browse files Browse the repository at this point in the history
fix propcheck and declare xmerl as an extra app required to be turned on
  • Loading branch information
xou committed Feb 17, 2024
2 parents 8ab9276 + 4360c65 commit e06af2d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,18 @@ defmodule Elixlsx.Mixfile do
end

def application do
[ applications: [:xmerl, :propcheck] ]
[extra_applications: [:xmerl]]
end

defp deps do
[
{:credo, "~> 1.6", only: [:dev, :test]},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:propcheck, "~> 1.4", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: [:dev], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false}
]
end


defp docs do
[
extras: ["CHANGELOG.md", "README.md"],
Expand Down

0 comments on commit e06af2d

Please sign in to comment.