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

Commit f397d61

Browse files
authored
fix-next: remove extra comma on Object.assign (#524)
This can't be parsed with node 6.
1 parent bb54db1 commit f397d61

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)