From a25779c989f7092892f35c6d99f8e278cac4fdd1 Mon Sep 17 00:00:00 2001
From: Maxim Khlobystov <maxim.khlobystov@gmail.com>
Date: Thu, 22 Jun 2017 01:19:13 +0000
Subject: [PATCH] Get rid of the unused npm config file and add --production
 flag to one of the npm start scripts.

---
 bigbluebutton-html5/.npmrc       | 3 ---
 bigbluebutton-html5/package.json | 2 +-
 2 files changed, 1 insertion(+), 4 deletions(-)
 delete mode 100644 bigbluebutton-html5/.npmrc

diff --git a/bigbluebutton-html5/.npmrc b/bigbluebutton-html5/.npmrc
deleted file mode 100644
index bfa88f97b8..0000000000
--- a/bigbluebutton-html5/.npmrc
+++ /dev/null
@@ -1,3 +0,0 @@
-rootURL = http://127.0.0.1/html5client
-#prodHome = /usr/share/meteor
-
diff --git a/bigbluebutton-html5/package.json b/bigbluebutton-html5/package.json
index 8958e3dd5e..dfdf6d9d8d 100644
--- a/bigbluebutton-html5/package.json
+++ b/bigbluebutton-html5/package.json
@@ -3,7 +3,7 @@
   "description": "BigBlueButton HTML5 Client",
   "scripts": {
     "start": "if test \"$NODE_ENV\" = \"production\" ; then npm run start:prod; else npm run start:dev; fi",
-    "start:prod": "meteor reset && ROOT_URL=http://127.0.0.1/html5client NODE_ENV=production meteor",
+    "start:prod": "meteor reset && ROOT_URL=http://127.0.0.1/html5client NODE_ENV=production meteor --production",
     "start:dev": "ROOT_URL=http://127.0.0.1/html5client NODE_ENV=development meteor",
     "test": "wdio ./tests/webdriverio/wdio.conf.js",
     "lint": "eslint . --ext .jsx,.js"
-- 
GitLab