Skip to content
This repository has been archived by the owner on Aug 7, 2021. It is now read-only.

Commit

Permalink
fix: remove unnecessary comma (#472)
Browse files Browse the repository at this point in the history
This excessive comma provokes some strange behavior on nodejs 6 and the file cannot be `require`d.
  • Loading branch information
Mitko-Kerezov authored and sis0k0 committed Mar 22, 2018
1 parent 7015346 commit ce60606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function buildEnvData($projectData, platform, env) {
const appResourcesPath = getAppResourcesPathFromProjectData($projectData);
Object.assign(envData,
appPath && { appPath },
appResourcesPath && { appResourcesPath },
appResourcesPath && { appResourcesPath }
);

return envData;
Expand Down

0 comments on commit ce60606

Please sign in to comment.