-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
53 lines (47 loc) · 1.17 KB
/
mix.exs
File metadata and controls
53 lines (47 loc) · 1.17 KB
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
47
48
49
50
51
52
53
defmodule AbsintheUploadStandard.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/Leandro-Moreno/absinthe_upload_standard"
def project do
[
app: :absinthe_upload_standard,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: @source_url
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:plug, "~> 1.14"},
{:jason, "~> 1.4"},
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp description do
"""
Standard graphql-multipart-request-spec support for Absinthe uploads.
Built by the Shiko team. Transitional package while absinthe_plug#309
gets merged upstream.
"""
end
defp package do
[
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Upstream PR" => "https://github.com/absinthe-graphql/absinthe_plug/pull/309",
"graphql-multipart-request-spec" =>
"https://github.com/jaydenseric/graphql-multipart-request-spec"
}
]
end
end