diff --git a/mix.exs b/mix.exs
index 7189f4c7a3465b6ed7761a40f632ee8f79f5c3ca..c038c50d471c0a8d60e6e3eccd6473faf0865c4f 100644
--- a/mix.exs
+++ b/mix.exs
@@ -54,7 +54,7 @@ defmodule Plausible.MixProject do
       {:combination, "~> 0.0.3"},
       {:cors_plug, "~> 2.0"},
       {:ecto_sql, "~> 3.0"},
-      {:elixir_uuid, "~> 1.2"},
+      {:elixir_uuid, "~> 1.2", only: :test},
       {:jason, "~> 1.2"},
       {:phoenix, "~> 1.5.0"},
       {:phoenix_ecto, "~> 4.0"},
diff --git a/tracker/compile.js b/tracker/compile.js
index a7cbba670385ea7878f5d42ff76fa4c8dc661b1b..b0aa42e7517863dac14ad9700f2815f95dae882e 100644
--- a/tracker/compile.js
+++ b/tracker/compile.js
@@ -13,7 +13,6 @@ function compilefile(input, output, templateVars = {}) {
   const template = Handlebars.compile(code)
   const rendered = template(templateVars)
   const result = uglify.minify(rendered)
-  console.log(result)
   fs.writeFileSync(output, result.code)
 }