-
Notifications
You must be signed in to change notification settings - Fork 9
/
mix.exs
155 lines (147 loc) · 5.06 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
defmodule PrimerLive.MixProject do
use Mix.Project
def project do
[
app: :primer_live,
version: "0.8.0-alpha",
elixir: "~> 1.17",
homepage_url: "https://github.com/ArthurClemens/primer_live",
elixirc_paths: elixirc_paths(Mix.env()),
description: description(),
package: package(),
aliases: aliases(),
name: "PrimerLive",
deps: deps(),
docs: docs(),
consolidate_protocols: Mix.env() != :test
]
end
defp elixirc_paths(:dev), do: ["lib", "lib_target"]
defp elixirc_paths(_), do: ["lib"]
defp description do
"An implementation of GitHub's Primer Design System for Phoenix LiveView."
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
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ecto_sql, "~> 3.10", only: :test, runtime: false},
{:ecto, "~> 3.10", runtime: false},
{:esbuild, "~> 0.8", only: [:dev, :test]},
{:ex_doc, "~> 0.34", only: :dev},
{:github_workflows_generator, "~> 0.1", only: :dev, runtime: false},
{:jason, "~> 1.4"},
{:mix_audit, "~> 2.1", only: [:dev, :test], runtime: false},
{:phoenix_ecto, "~> 4.5", only: :test, runtime: false},
{:phoenix_html, "~> 4.1"},
{:phoenix_html_helpers, "~> 1.0"},
{:phoenix_live_view, "~> 0.20"},
{:sobelow, "~> 0.13", only: [:dev, :test], runtime: false}
]
end
defp docs do
[
main: "PrimerLive",
groups_for_docs: [
Alerts: &(&1[:section] == :alerts),
Avatars: &(&1[:section] == :avatars),
Blankslate: &(&1[:section] == :blankslate),
Box: &(&1[:section] == :box),
"Branch name": &(&1[:section] == :branch_name),
Breadcrumbs: &(&1[:section] == :breadcrumbs),
Buttons: &(&1[:section] == :buttons),
Dialog: &(&1[:section] == :dialog),
"Dialog functions": &(&1[:section] == :dialog_functions),
Drawer: &(&1[:section] == :drawer),
"Drawer functions": &(&1[:section] == :drawer_functions),
"Styled HTML": &(&1[:section] == :styled_html),
Forms: &(&1[:section] == :forms),
Header: &(&1[:section] == :header),
Icons: &(&1[:section] == :icons),
Labels: &(&1[:section] == :labels),
Layout: &(&1[:section] == :layout),
Links: &(&1[:section] == :links),
Loaders: &(&1[:section] == :loaders),
Markdown: &(&1[:section] == :markdown),
Menus: &(&1[:section] == :menus),
"Menu functions": &(&1[:section] == :menu_functions),
Navigation: &(&1[:section] == :navigation),
Pagination: &(&1[:section] == :pagination),
Popover: &(&1[:section] == :popover),
Progress: &(&1[:section] == :progress),
Subhead: &(&1[:section] == :subhead),
Theme: &(&1[:section] == :theme),
Timeline: &(&1[:section] == :timeline),
Toasts: &(&1[:section] == :toasts),
Tooltips: &(&1[:section] == :tooltips),
Truncate: &(&1[:section] == :truncate)
],
extras: [
"doc-extra/installation.md",
"doc-extra/usage.md",
"doc-extra/menus-and-dialogs.md",
"CHANGELOG.md",
"LICENSE.md"
]
]
end
defp package do
[
maintainers: ["Arthur Clemens"],
licenses: ["MIT"],
links: %{
GitHub: "https://github.com/ArthurClemens/primer_live"
},
files:
~w(lib .formatter.exs mix.exs README* LICENSE* priv/octicon_builder/build.exs priv/static
CHANGELOG* package.json),
exclude_patterns: ["lib/helpers/test_helpers", "priv/octicon_builder"]
]
end
defp aliases do
[
setup: ["deps.get", "cmd --cd assets npm install --legacy-peer-deps"],
# Quality check
qa: [
"deps.clean --unlock --unused",
"format",
"format --check-formatted",
"compile",
"sobelow --config",
"credo --strict",
"docs"
],
doc: [
"cmd rm -rf ./doc",
"cmd mix docs"
],
"assets.build": [
"cmd rm -rf priv/static/*",
"cmd npm --prefix assets run build:types",
"cmd npm --prefix assets run build -- --bundle --format=esm --sourcemap --outfile=../priv/static/primer-live.esm.js",
"cmd npm --prefix assets run build -- --format=iife --target=es2016 --outfile=../priv/static/primer-live.js",
"cmd npm --prefix assets run build -- --format=cjs --sourcemap --outfile=../priv/static/primer-live.cjs.js",
"cmd npm --prefix assets run build -- --format=iife --target=es2016 --minify --outfile=../priv/static/primer-live.min.js",
"cmd rm -rf priv/static/*.cjs.css*",
"cmd rm -rf priv/static/*.esm.css*"
],
# CI
ci: [
"deps.unlock --check-unused",
"deps.audit",
"hex.audit",
"sobelow --config",
"format --check-formatted",
"credo --strict",
# "dialyzer",
"cmd MIX_ENV=test mix test"
]
]
end
end