From 11b3a5888f634dc693e1adbac6c0226a73eacea4 Mon Sep 17 00:00:00 2001
From: "mathias.chouet" <mathias.chouet@irstea.fr>
Date: Mon, 6 Jul 2020 14:30:57 +0200
Subject: [PATCH] Disable CLI analytics in config file (easier for CI)

---
 angular.json | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/angular.json b/angular.json
index 5e5ff3530..5242f68a4 100644
--- a/angular.json
+++ b/angular.json
@@ -22,9 +22,21 @@
               "src/locale",
               "src/favicon.ico",
               "src/.htaccess",
-              { "glob": "**/*.json", "input": "src/", "output": "/" },
-              { "glob": "**/*.md", "input": "src/", "output": "/" },
-              { "glob": "**/*.png", "input": "src/", "output": "/" }
+              {
+                "glob": "**/*.json",
+                "input": "src/",
+                "output": "/"
+              },
+              {
+                "glob": "**/*.md",
+                "input": "src/",
+                "output": "/"
+              },
+              {
+                "glob": "**/*.png",
+                "input": "src/",
+                "output": "/"
+              }
             ],
             "styles": [
               "src/styles.scss",
@@ -156,5 +168,8 @@
     "@schematics/angular:directive": {
       "prefix": "app"
     }
+  },
+  "cli": {
+    "analytics": false
   }
 }
\ No newline at end of file
-- 
GitLab