@@ -7,7 +7,7 @@ defmodule Prima.MixProject do
77 name: "Prima" ,
88 description: "Unstyled, accessible components for LiveView applications" ,
99 app: :prima ,
10- version: "0.1.3 " ,
10+ version: "0.1.4 " ,
1111 elixir: "~> 1.14" ,
1212 elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
1313 start_permanent: Mix . env ( ) == :prod ,
@@ -20,23 +20,16 @@ defmodule Prima.MixProject do
2020 ]
2121 end
2222
23- # Configuration for the OTP application.
24- #
25- # Type `mix help compile.app` for more information.
2623 def application do
2724 [
2825 mod: { Prima.Application , [ ] } ,
2926 extra_applications: [ :logger , :runtime_tools ]
3027 ]
3128 end
3229
33- # Specifies which paths to compile per environment.
3430 defp elixirc_paths ( :test ) , do: [ "lib" , "test/support" ]
3531 defp elixirc_paths ( _ ) , do: [ "lib" ]
3632
37- # Specifies your project dependencies.
38- #
39- # Type `mix help deps` for examples and options.
4033 defp deps do
4134 [
4235 { :lazy_html , ">= 0.0.0" , only: :test } ,
@@ -56,12 +49,6 @@ defmodule Prima.MixProject do
5649 ]
5750 end
5851
59- # Aliases are shortcuts or tasks specific to the current project.
60- # For example, to install project dependencies and perform other setup tasks, run:
61- #
62- # $ mix setup
63- #
64- # See the documentation for `Mix` for more info on aliases.
6552 defp aliases do
6653 [
6754 setup: [ "deps.get" , "assets.setup" , "assets.build" ] ,
0 commit comments