From ca8d4e095cd27f796ec74b4020846ad9a6c16d15 Mon Sep 17 00:00:00 2001 From: sis0k0 Date: Tue, 15 May 2018 17:13:35 +0300 Subject: [PATCH] fix-next: remove extra comma on Object.assign This can't be parsed with node 6. --- lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.js b/lib/utils.js index f69a872d..1f524b19 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;