FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
elixir-thin-client/mix.exs at main · splitio/elixir-thin-client · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
splitio
/
elixir-thin-client
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
4
Code
Issues
1
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
elixir-thin-client
/
mix.exs
Copy path
More file actions
More file actions
Latest commit
History
History
History
64 lines (59 loc) · 1.68 KB
Breadcrumbs
elixir-thin-client
/
mix.exs
Copy path
File metadata and controls
64 lines (59 loc) · 1.68 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
54
55
56
57
58
59
60
61
62
63
64
defmodule
SplitThinElixir.MixProject
do
use
Mix.Project
def
project
do
[
app:
:split
,
version:
"1.0.1"
,
elixir:
"~> 1.14"
,
elixirc_paths:
elixirc_paths
(
Mix
.
env
(
)
)
,
start_permanent:
Mix
.
env
(
)
==
:prod
,
deps:
deps
(
)
,
runtime_tools:
[
:observer
]
,
package:
package
(
)
,
docs:
[
filter_modules:
fn
mod
,
_meta
->
# Skip modules that are not part of the public API
mod
in
[
Split
,
Split.Supervisor
,
Split.SplitView
,
Split.TreatmentWithConfig
]
end
]
]
end
# Package-specific metadata for Hex.pm
defp
package
do
[
name:
"split_thin_sdk"
,
description:
"Official Split by Harness SDK for feature flags (a.k.a. Split FME)"
,
licenses:
[
"Apache-2.0"
]
,
links:
%
{
"GitHub"
=>
"https://github.com/splitio/elixir-thin-client"
,
"Docs"
=>
"https://hexdocs.pm/split_thin_sdk"
}
,
maintainers:
[
"Emiliano Sanchez"
,
"Nicolas Zelaya"
,
"split-fme-libraries@harness.io"
]
]
end
# Run "mix help compile.app" to learn about applications.
def
application
do
[
extra_applications:
[
:logger
]
]
end
# Run "mix help deps" to learn about dependencies.
defp
deps
do
[
{
:msgpax
,
"~> 2.0"
}
,
{
:nimble_pool
,
"~> 1.0"
}
,
{
:telemetry
,
"~> 1.0"
}
,
# Dev and test dependencies
{
:dialyxir
,
"~> 1.4"
,
only:
[
:dev
,
:test
]
,
runtime:
false
}
,
{
:ex_doc
,
"~> 0.21"
,
only:
:dev
,
runtime:
false
}
,
{
:mix_audit
,
"~> 2.1"
,
only:
[
:dev
,
:test
]
,
runtime:
false
}
]
end
defp
elixirc_paths
(
:test
)
,
do:
[
"lib"
,
"test/support"
]
defp
elixirc_paths
(
_
)
,
do:
[
"lib"
]
end
Back
|
FazBrowse Home
|
New Git URL