From 045268f0805f5d6590ce6caf6f40e370f66627dd Mon Sep 17 00:00:00 2001
From: Uku Taht <uku.taht@gmail.com>
Date: Wed, 29 Dec 2021 12:46:01 +0200
Subject: [PATCH] Remove console log

---
 mix.exs            | 2 +-
 tracker/compile.js | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/mix.exs b/mix.exs
index 7189f4c7..c038c50d 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 a7cbba67..b0aa42e7 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)
 }
 
-- 
GitLab