This is an automated email from the ASF dual-hosted git repository.

dpogue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-ios.git


The following commit(s) were added to refs/heads/master by this push:
     new dba1704e feat: support extending export options (#1210)
dba1704e is described below

commit dba1704e53521d74a24d6878be935b9b3c6164f2
Author: Philipp <[email protected]>
AuthorDate: Sat Dec 24 19:59:59 2022 +0100

    feat: support extending export options (#1210)
---
 lib/build.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/build.js b/lib/build.js
index 57d34ca8..35fe1c9c 100644
--- a/lib/build.js
+++ b/lib/build.js
@@ -220,7 +220,7 @@ module.exports.run = function (buildOpts) {
 
             const project = createProjectObject(projectPath, projectName);
             const bundleIdentifier = project.getPackageName();
-            const exportOptions = { compileBitcode: false, method: 
'development' };
+            const exportOptions = { ...buildOpts.exportOptions, 
compileBitcode: false, method: 'development' };
 
             if (buildOpts.packageType) {
                 exportOptions.method = buildOpts.packageType;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to