Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmix.exs
More file actions
Latest commit
46 lines (41 loc) · 866 Bytes
/
Copy pathmix.exs
File metadata and controls
46 lines (41 loc) · 866 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
40
41
42
43
44
45
46
defmoduleElixirScriptReact.Mixfiledo
useMix.Project
defprojectdo
[
app: :elixir_script_react,
version: "16.2.0",
elixir: "~> 1.6",
start_permanent: Mix.env==:prod,
deps: deps(),
package: package(),
description: description()
]
end
defapplicationdo
[
extra_applications: [:logger]
]
end
defpdepsdo
[
{:elixir_script,"~> 0.32"},
{:ex_doc,"~> 0.18",only: :dev}
]
end
defpdescriptiondo
"""
React library for ElixirScript
"""
end
defppackagedo
[
files: ["lib","priv/**/*.*","mix.exs","README.md","CHANGELOG.md"],
maintainers: ["Bryan Joseph"],
licenses: ["BSD-3"],
links: %{
"GitHub"=>"https://github.com/elixirscript/elixirscript_react"
},
build_tools: ["mix"]
]
end
end