Skip to content

Commit

Permalink
Add project meta
Browse files Browse the repository at this point in the history
  • Loading branch information
gilest committed Dec 12, 2024
1 parent 816bdc5 commit 9690c46
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ defmodule PhoenixImportmap.MixProject do
[
app: :phoenix_importmap,
version: "0.1.0",
description: description(),
package: package(),
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
deps: deps()
Expand All @@ -25,4 +27,18 @@ defmodule PhoenixImportmap.MixProject do
{:jason, "~> 1.4.4"}
]
end

defp description() do
"Use ESM with importmap to efficiently serve JavaScript without transpiling or bundling."
end

defp package() do
[
[
licenses: ["MIT"],
maintainers: ["Giles Thompson"],
links: %{"GitHub" => "https://github.com/gilest/phoenix_importmap"}
]
]
end
end

0 comments on commit 9690c46

Please sign in to comment.