amethyst/mix.exs

38 lines
827 B
Elixir
Raw Permalink Normal View History

2024-08-16 18:27:34 +02:00
defmodule AmethystUmbrella.MixProject do
use Mix.Project
def project do
[
2024-08-16 18:27:34 +02:00
apps_path: "apps",
version: "0.1.0",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
2024-08-17 17:21:30 +02:00
deps: deps(),
default_release: :amethyst,
2024-08-17 17:21:30 +02:00
releases: [
amethyst: [
version: "0.1.0",
applications: [amethyst: :permanent]
],
example: [
version: "0.1.0",
applications: [
amethyst: :permanent,
example_game: :permanent
]
2024-08-17 17:21:30 +02:00
]
]
]
end
2024-08-16 18:27:34 +02:00
# Dependencies listed here are available only for this
# project and cannot be accessed from applications inside
# the apps folder.
#
# Run "mix help deps" for examples and options.
defp deps do
2024-09-04 11:55:37 +02:00
[{:pre_commit, "~> 0.3.4", only: :dev}]
end
end