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

Commit ce60606

Browse files
Mitko-Kerezovsis0k0
authored andcommitted
fix: remove unnecessary comma (#472)
This excessive comma provokes some strange behavior on nodejs 6 and the file cannot be `require`d.
1 parent 7015346 commit ce60606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function buildEnvData($projectData, platform, env) {
1919
const appResourcesPath = getAppResourcesPathFromProjectData($projectData);
2020
Object.assign(envData,
2121
appPath && { appPath },
22-
appResourcesPath && { appResourcesPath },
22+
appResourcesPath && { appResourcesPath }
2323
);
2424

2525
return envData;

0 commit comments

Comments
 (0)