Generate module and optimize LiveView diffing

This commit is contained in:
Chris McCord
2022-09-15 11:58:46 -04:00
parent 2ff8bca42e
commit 46c0c7237d
857 changed files with 8823 additions and 501 deletions

12
mix.exs
View File

@ -4,7 +4,7 @@ defmodule HeroiconsElixir.MixProject do
def project do
[
app: :heroicons,
version: "0.4.1",
version: "0.5.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
@ -20,16 +20,14 @@ defmodule HeroiconsElixir.MixProject do
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Heroicons, []}
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:phoenix_html, "~> 2.14 or ~> 3.0"},
{:phoenix_live_view, ">= 0.16.0", optional: true},
{:phoenix_live_view, github: "phoenixframework/phoenix_live_view"},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:castore, ">= 0.0.0"}
]
@ -43,8 +41,6 @@ defmodule HeroiconsElixir.MixProject do
end
defp docs do
[
assets: "priv/"
]
[]
end
end