mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-04 06:01:59 +08:00
cf80d485ea
closes #1324
33 lines
527 B
Elixir
33 lines
527 B
Elixir
defmodule AppBundler.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :app_bundler,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.13",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps(),
|
|
|
|
# Suppress warnings
|
|
xref: [
|
|
exclude: [
|
|
:wx
|
|
]
|
|
]
|
|
]
|
|
end
|
|
|
|
def application do
|
|
[
|
|
mod: {AppBundler.Application, []},
|
|
extra_applications: [:logger, :eex, :inets, :ssl, :crypto]
|
|
]
|
|
end
|
|
|
|
defp deps do
|
|
[
|
|
{:libpe, "~> 1.0"}
|
|
]
|
|
end
|
|
end
|