Skip to content

Commit 91d84c0

Browse files
authored
fix: minimize deps (#122)
Some deps were literally not used, some were only used in test, and the xmlbuilder dep wasn't necessary.
1 parent 0873535 commit 91d84c0

File tree

3 files changed

+18
-21
lines changed

3 files changed

+18
-21
lines changed

lib/tableau/extensions/sitemap_extension.ex

+17-16
Original file line numberDiff line numberDiff line change
@@ -52,27 +52,28 @@ defmodule Tableau.SitemapExtension do
5252
urls =
5353
for page <- pages, uniq: true do
5454
loc =
55-
[{:loc, nil, URI.merge(root, page.permalink)}]
55+
["<loc>", root |> URI.merge(page.permalink) |> URI.to_string(), "</loc>"]
5656
|> prepend_lastmod(page)
5757
|> prepend_sitemap_assigns(page)
5858

59-
{:url, nil, loc}
59+
["<url>", loc, "</url>"]
6060
end
6161

62-
xml =
63-
XmlBuilder.document(
64-
:urlset,
65-
[
66-
xmlns: "http://www.sitemaps.org/schemas/sitemap/0.9",
67-
"xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
68-
"xsi:schemaLocation":
69-
"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
70-
],
71-
urls
72-
)
62+
xml = [
63+
"<urlset ",
64+
" ",
65+
~s|xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"|,
66+
" ",
67+
~s|xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"|,
68+
" ",
69+
~s|xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"|,
70+
">",
71+
urls,
72+
"</urlset>"
73+
]
7374

7475
File.mkdir_p!("_site")
75-
File.write!("_site/sitemap.xml", XmlBuilder.generate_iodata(xml))
76+
File.write!("_site/sitemap.xml", xml)
7677

7778
{:ok, token}
7879
rescue
@@ -82,14 +83,14 @@ defmodule Tableau.SitemapExtension do
8283
end
8384

8485
defp prepend_lastmod(body, %{date: date}) do
85-
[{:lastmod, nil, DateTime.to_iso8601(date)} | body]
86+
["<lastmod>", DateTime.to_iso8601(date), "</lastmod>" | body]
8687
end
8788

8889
defp prepend_lastmod(body, _), do: body
8990

9091
defp prepend_sitemap_assigns(body, %{sitemap: sitemap_data}) do
9192
for {key, value} <- sitemap_data, reduce: body do
92-
acc -> [{key, [], value} | acc]
93+
acc -> ["<", key, ">", value, "</", key, ">" | acc]
9394
end
9495
end
9596

mix.exs

+1-3
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,17 @@ defmodule Tableau.MixProject do
3535
[
3636
{:bandit, "~> 1.0"},
3737
{:date_time_parser, "~> 1.2"},
38-
{:floki, "~> 0.34"},
3938
{:html_entities, "~> 0.5.2"},
4039
{:libgraph, "~> 0.16.0"},
4140
{:mdex, "~> 0.2.0"},
42-
{:plug_static_index_html, "~> 1.0"},
4341
{:schematic, "~> 0.4"},
4442
{:tz, "~> 0.28.1"},
4543
{:web_dev_utils, "~> 0.3"},
4644
{:websock_adapter, "~> 0.5"},
47-
{:xml_builder, "~> 2.1"},
4845
{:yaml_elixir, "~> 2.9"},
4946

5047
# dev
48+
{:floki, "~> 0.34", only: :test},
5149
{:ex_doc, ">= 0.0.0", only: :dev},
5250
{:styler, "~> 1.0", only: :dev}
5351
]

mix.lock

-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"nimble_parsec": {:hex, :nimble_parsec, "1.4.0", "51f9b613ea62cfa97b25ccc2c1b4216e81df970acd8e16e8d1bdc58fef21370d", [:mix], [], "hexpm", "9c565862810fb383e9838c1dd2d7d2c437b3d13b267414ba6af33e50d2d1cf28"},
1919
"plug": {:hex, :plug, "1.16.1", "40c74619c12f82736d2214557dedec2e9762029b2438d6d175c5074c933edc9d", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "a13ff6b9006b03d7e33874945b2755253841b238c34071ed85b0e86057f8cddc"},
2020
"plug_crypto": {:hex, :plug_crypto, "2.1.0", "f44309c2b06d249c27c8d3f65cfe08158ade08418cf540fd4f72d4d6863abb7b", [:mix], [], "hexpm", "131216a4b030b8f8ce0f26038bc4421ae60e4bb95c5cf5395e1421437824c4fa"},
21-
"plug_static_index_html": {:hex, :plug_static_index_html, "1.0.0", "840123d4d3975585133485ea86af73cb2600afd7f2a976f9f5fd8b3808e636a0", [:mix], [{:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "79fd4fcf34d110605c26560cbae8f23c603ec4158c08298bd4360fdea90bb5cf"},
2221
"rustler_precompiled": {:hex, :rustler_precompiled, "0.8.2", "5f25cbe220a8fac3e7ad62e6f950fcdca5a5a5f8501835d2823e8c74bf4268d5", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: false]}, {:rustler, "~> 0.23", [hex: :rustler, repo: "hexpm", optional: true]}], "hexpm", "63d1bd5f8e23096d1ff851839923162096364bac8656a4a3c00d1fff8e83ee0a"},
2322
"schematic": {:hex, :schematic, "0.4.0", "2b3c4865c919bb9392251aba4198982f7be8785bc37c732ccfe672a3e19e4591", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "692747901601f4b511171fbd3a4032bf13d84dc81d52e827f041373ce2035588"},
2423
"styler": {:hex, :styler, "1.1.1", "ccb55763316915b5de532bf14c587c211ddc86bc749ac676e74dfacd3894cc0d", [:mix], [], "hexpm", "80ce12fb862e13d998589eea7c1932f4e6ce9d6ded2182cb322f8f9b2b8d3632"},
@@ -28,7 +27,6 @@
2827
"web_dev_utils": {:hex, :web_dev_utils, "0.3.0", "463f3695dcdee9a6f18dbc783ee76f0ecdd1c9a489a6482aadcf166b3e5fee12", [:mix], [{:file_system, "~> 1.0", [hex: :file_system, repo: "hexpm", optional: false]}], "hexpm", "c239d4d24bfc61110a98b7d75bb7bbbb1752a5d8fcb5a2d369c5d4f64d1d7aec"},
2928
"websock": {:hex, :websock, "0.5.3", "2f69a6ebe810328555b6fe5c831a851f485e303a7c8ce6c5f675abeb20ebdadc", [:mix], [], "hexpm", "6105453d7fac22c712ad66fab1d45abdf049868f253cf719b625151460b8b453"},
3029
"websock_adapter": {:hex, :websock_adapter, "0.5.7", "65fa74042530064ef0570b75b43f5c49bb8b235d6515671b3d250022cb8a1f9e", [:mix], [{:bandit, ">= 0.6.0", [hex: :bandit, repo: "hexpm", optional: true]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.6", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:websock, "~> 0.5", [hex: :websock, repo: "hexpm", optional: false]}], "hexpm", "d0f478ee64deddfec64b800673fd6e0c8888b079d9f3444dd96d2a98383bdbd1"},
31-
"xml_builder": {:hex, :xml_builder, "2.3.0", "69d214c6ad41ae1300b36acff4367551cdfd9dc1b860affc16e103c6b1589053", [:mix], [], "hexpm", "972ec33346a225cd5acd14ab23d4e79042bd37cb904e07e24cd06992dde1a0ed"},
3230
"yamerl": {:hex, :yamerl, "0.10.0", "4ff81fee2f1f6a46f1700c0d880b24d193ddb74bd14ef42cb0bcf46e81ef2f8e", [:rebar3], [], "hexpm", "346adb2963f1051dc837a2364e4acf6eb7d80097c0f53cbdc3046ec8ec4b4e6e"},
3331
"yaml_elixir": {:hex, :yaml_elixir, "2.11.0", "9e9ccd134e861c66b84825a3542a1c22ba33f338d82c07282f4f1f52d847bd50", [:mix], [{:yamerl, "~> 0.10", [hex: :yamerl, repo: "hexpm", optional: false]}], "hexpm", "53cc28357ee7eb952344995787f4bb8cc3cecbf189652236e9b163e8ce1bc242"},
3432
}

0 commit comments

Comments
 (0)