-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
84 lines (77 loc) · 1.96 KB
/
mix.exs
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
defmodule Autumn.MixProject do
use Mix.Project
@source_url "https://github.com/leandrocp/autumn"
@version "0.3.0"
@dev? String.ends_with?(@version, "-dev")
@force_build? System.get_env("AUTUMN_BUILD") in ["1", "true"]
def project do
[
app: :autumn,
version: @version,
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
build_embedded: Mix.env() == :prod,
package: package(),
docs: docs(),
deps: deps(),
aliases: aliases(),
name: "Autumn",
homepage_url: "https://autumnus.dev",
description: "Syntax highlighter powered by Tree-sitter and Neovim themes."
]
end
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
maintainers: ["Leandro Pereira"],
licenses: ["MIT"],
links: %{
Changelog: "https://hexdocs.pm/autumn/changelog.html",
GitHub: @source_url,
Site: "https://autumnus.dev"
},
files: ~w[
lib
native
priv/static/css
checksum-*.exs
mix.exs
README.md
LICENSE.md
CHANGELOG.md
]
]
end
defp docs do
[
main: "Autumn",
assets: "assets/images",
logo: "assets/images/autumn_icon.png",
source_ref: "v#{@version}",
source_url: @source_url,
extras: ["CHANGELOG.md"],
skip_undefined_reference_warnings_on: ["CHANGELOG.md"]
]
end
defp deps do
[
{:rustler, "~> 0.29", optional: not (@dev? or @force_build?)},
{:rustler_precompiled, "~> 0.6"},
{:ex_doc, "~> 0.34", only: :dev}
]
end
defp aliases do
[
"gen.checksum": "rustler_precompiled.download Autumn.Native --all --print",
"format.all": ["rust.fmt", "format"],
"rust.lint": [
"cmd cargo clippy --manifest-path=native/autumnus_nif/Cargo.toml -- -Dwarnings"
],
"rust.fmt": ["cmd cargo fmt --manifest-path=native/autumnus_nif/Cargo.toml --all"]
]
end
end