From 877845c527b6f1c889ae6febe29ee876ec842c33 Mon Sep 17 00:00:00 2001
From: Eugen Neuber <eugen.neuber@tugraz.at>
Date: Wed, 16 Sep 2020 11:58:39 +0200
Subject: [PATCH] Repair CI build (remove npm from script)

See issue #29
---
 packages/matomo/package.json | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/packages/matomo/package.json b/packages/matomo/package.json
index 5bb652ef..7dcdfa0a 100644
--- a/packages/matomo/package.json
+++ b/packages/matomo/package.json
@@ -32,16 +32,15 @@
   },
   "scripts": {
     "clean": "rm dist/*",
-    "build": "npm run build-local",
     "build-local": "rollup -c",
     "build-dev": "rollup -c --environment BUILD:development",
     "build-prod": "rollup -c --environment BUILD:production",
     "build-demo": "rollup -c --environment BUILD:demo",
     "build-test": "rollup -c --environment BUILD:test",
     "i18next": "i18next-scanner",
-    "watch": "npm run watch-local",
-    "watch-local": "rollup -c --watch",
+    "watch": "rollup -c --watch",
+    "watch-local": "yarn run watch",
     "watch-dev": "rollup -c --watch --environment BUILD:development",
-    "test": "npm run build-test && karma start --singleRun"
+    "test": "rollup -c --environment BUILD:test && karma start --singleRun"
   }
 }
-- 
GitLab