We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29a0c55 commit c84c70bCopy full SHA for c84c70b
mix.exs
@@ -10,9 +10,10 @@ defmodule Dmp.MixProject do
10
version: @version,
11
elixir: "~> 1.11",
12
start_permanent: Mix.env() == :prod,
13
+ deps: deps(),
14
source_url: @github_project_url,
15
hompepage_url: @github_project_url,
- deps: deps(),
16
+ description: description(),
17
package: package(),
18
docs: docs()
19
]
@@ -25,9 +26,15 @@ defmodule Dmp.MixProject do
25
26
27
end
28
29
+ defp description do
30
+ """
31
+ An Elixir implementation of the Google diff_match_patch library.
32
33
+ end
34
+
35
defp package do
36
[
- licenses: "Apache-2.0",
37
+ licenses: ["Apache-2.0"],
38
links: %{"GitHub" => @github_project_url}
39
40
0 commit comments