Skip to content

Commit

Permalink
Move mix config keys to proper sections
Browse files Browse the repository at this point in the history
  • Loading branch information
cpjolicoeur committed Jul 26, 2021
1 parent 1fcb7e6 commit 396892a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ defmodule Torch.MixProject do
start_permanent: Mix.env() == :prod,
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
name: "Torch",
description: "Rapid admin generator for Phoenix",
source_url: @source_url,
homepage_url: @source_url,
test_paths: ["test/mix", "test/torch"],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
Expand Down Expand Up @@ -56,10 +59,9 @@ defmodule Torch.MixProject do

defp package do
[
description: "Rapid admin generator for Phoenix",
maintainers: ["MojoTech"],
licenses: ["MIT"],
files: ~w(lib priv mix.exs README.md LICENSE.md CHANGELOG.md CODE_OF_CONDUCT.md),
files: ~w(lib priv mix.exs README.md LICENSE CHANGELOG.md CODE_OF_CONDUCT.md),
links: %{
"Github" => @source_url
}
Expand All @@ -75,8 +77,6 @@ defmodule Torch.MixProject do
"README.md": [title: "Overview"]
],
main: "readme",
homepage_url: @source_url,
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
Expand Down

0 comments on commit 396892a

Please sign in to comment.