|
|
@ -6,6 +6,7 @@ defmodule BlockScout.Mixfile do |
|
|
|
def project do |
|
|
|
def project do |
|
|
|
[ |
|
|
|
[ |
|
|
|
aliases: aliases(Mix.env()), |
|
|
|
aliases: aliases(Mix.env()), |
|
|
|
|
|
|
|
version: "2.0", |
|
|
|
apps_path: "apps", |
|
|
|
apps_path: "apps", |
|
|
|
deps: deps(), |
|
|
|
deps: deps(), |
|
|
|
dialyzer: [ |
|
|
|
dialyzer: [ |
|
|
@ -23,7 +24,17 @@ defmodule BlockScout.Mixfile do |
|
|
|
dialyzer: :test |
|
|
|
dialyzer: :test |
|
|
|
], |
|
|
|
], |
|
|
|
start_permanent: Mix.env() == :prod, |
|
|
|
start_permanent: Mix.env() == :prod, |
|
|
|
test_coverage: [tool: ExCoveralls] |
|
|
|
test_coverage: [tool: ExCoveralls], |
|
|
|
|
|
|
|
releases: [ |
|
|
|
|
|
|
|
blockscout: [ |
|
|
|
|
|
|
|
applications: [ |
|
|
|
|
|
|
|
block_scout_web: :permanent, |
|
|
|
|
|
|
|
ethereum_jsonrpc: :permanent, |
|
|
|
|
|
|
|
explorer: :permanent, |
|
|
|
|
|
|
|
indexer: :permanent |
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
] |
|
|
|
] |
|
|
|
] |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
@ -61,8 +72,6 @@ defmodule BlockScout.Mixfile do |
|
|
|
# and cannot be accessed from applications inside the apps folder |
|
|
|
# and cannot be accessed from applications inside the apps folder |
|
|
|
defp deps do |
|
|
|
defp deps do |
|
|
|
[ |
|
|
|
[ |
|
|
|
# Release |
|
|
|
|
|
|
|
{:distillery, "~> 2.0", runtime: false}, |
|
|
|
|
|
|
|
# Documentation |
|
|
|
# Documentation |
|
|
|
{:ex_doc, "~> 0.19.0", only: [:dev]}, |
|
|
|
{:ex_doc, "~> 0.19.0", only: [:dev]}, |
|
|
|
# Code coverage |
|
|
|
# Code coverage |
|
|
|