From d9fdc4b2ab5e1043765b0e37af15daca74a7750f Mon Sep 17 00:00:00 2001 From: Dimitar Kerezov Date: Thu, 22 Mar 2018 11:52:02 +0200 Subject: [PATCH] fix: remove unnecessary comma This excessive comma provokes some strange behavior on nodejs 6 and the file cannot be `require`d. --- lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.js b/lib/utils.js index 441b12fc..426d517c 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -19,7 +19,7 @@ function buildEnvData($projectData, platform, env) { const appResourcesPath = getAppResourcesPathFromProjectData($projectData); Object.assign(envData, appPath && { appPath }, - appResourcesPath && { appResourcesPath }, + appResourcesPath && { appResourcesPath } ); return envData;