Skip to content

Commit

Permalink
Merge pull request #685 from naymspace/feature/add-website-link-to-pa…
Browse files Browse the repository at this point in the history
…ckage

Add website url to package
  • Loading branch information
Flo0807 authored Dec 4, 2024
2 parents c96f1c8 + d02fd57 commit f263153
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ defmodule Backpex.MixProject do
use Mix.Project

@version "0.8.2"

@source_url "https://github.com/naymspace/backpex"
@changelog_url "https://github.com/naymspace/backpex/releases"
@website_url "https://backpex.live"

def project do
[
Expand All @@ -21,7 +24,7 @@ defmodule Backpex.MixProject do
# Docs
name: "Backpex",
source_url: @source_url,
homepage_url: "https://backpex.live",
homepage_url: @website_url,
docs: docs()
]
end
Expand Down Expand Up @@ -66,8 +69,9 @@ defmodule Backpex.MixProject do
maintainers: ["Florian Arens", "Phil-Bastian Berndt", "Simon Hansen"],
licenses: ["MIT"],
links: %{
Changelog: @source_url <> "/releases",
GitHub: @source_url
Changelog: @changelog_url,
GitHub: @source_url,
Website: @website_url
}
]
end
Expand Down

0 comments on commit f263153

Please sign in to comment.