From a36960a6f03ab289de3c1c8625921ef70d66c6ab Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Tue, 13 Mar 2018 16:55:02 -0600 Subject: [PATCH] parse env json the same as the rest, with hjson --- plugins.env.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins.env.js b/plugins.env.js index 7be520cc0d..ed3b2cbfd2 100644 --- a/plugins.env.js +++ b/plugins.env.js @@ -1 +1,2 @@ -module.exports = JSON.parse(process.env.TALK_PLUGINS_JSON); +const hjson = require('hjson'); +module.exports = hjson.parse(process.env.TALK_PLUGINS_JSON);