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 e9160bd commit a685ccfCopy full SHA for a685ccf
mix.exs
@@ -16,10 +16,7 @@ defmodule PhoenixLiveReload.Mixfile do
16
17
# Docs
18
name: "Phoenix Live-Reload",
19
- docs: [
20
- source_ref: "v#{@version}",
21
- source_url: "https://github.com/phoenixframework/phoenix_live_reload"
22
- ]
+ docs: docs()
23
]
24
end
25
@@ -48,4 +45,16 @@ defmodule PhoenixLiveReload.Mixfile do
48
45
{:jason, "~> 1.0", only: :test}
49
46
50
47
+
+ defp docs do
+ [
51
+ main: "readme",
52
+ extras: [
53
+ "README.md",
54
+ "CHANGELOG.md"
55
+ ],
56
+ source_ref: "v#{@version}",
57
+ source_url: "https://github.com/phoenixframework/phoenix_live_reload"
58
+ ]
59
+ end
60
0 commit comments