-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
39 lines (35 loc) · 936 Bytes
/
Copy pathmix.exs
File metadata and controls
39 lines (35 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
defmodule LabLive.MixProject do
use Mix.Project
def project do
[
app: :lab_live,
version: "0.2.5",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env())
]
end
def application do
[
extra_applications: [:logger, :eex, :wx, :observer, :runtime_tools],
mod: {LabLive.Application, []}
]
end
defp deps do
[
{:erlport, "~> 0.11.0"},
{:telemetry, "~> 1.2"},
{:jason, "~> 1.4"},
{:toml, "~> 0.7.0"},
{:kino, "~> 0.11.0"},
{:kino_vega_lite, "~> 0.1.10"},
{:ex_doc, "~> 0.30.8", only: :dev, runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:stream_data, "~> 0.5", only: :test},
{:mox, "~> 1.0", only: :test}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end