You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2022/01/23 06:15:47 UTC

[royale-asjs] branch ReleaseModules updated: update poms to use latest module output options

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

aharui pushed a commit to branch ReleaseModules
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/ReleaseModules by this push:
     new 6f815a4  update poms to use latest module output options
6f815a4 is described below

commit 6f815a4303b51073084703b49056d4a91f37aa0a
Author: Alex Harui <ah...@apache.org>
AuthorDate: Sat Jan 22 22:15:30 2022 -0800

    update poms to use latest module output options
---
 examples/royale/ModuleExample/MainApp/pom.xml | 2 +-
 examples/royale/ModuleExample/Module/pom.xml  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/royale/ModuleExample/MainApp/pom.xml b/examples/royale/ModuleExample/MainApp/pom.xml
index da1f59a..909cb5f 100644
--- a/examples/royale/ModuleExample/MainApp/pom.xml
+++ b/examples/royale/ModuleExample/MainApp/pom.xml
@@ -42,7 +42,7 @@
           <allowSubclassOverrides>true</allowSubclassOverrides>
           <targets>${royale.targets}</targets>
           <debug>false</debug>
-          <additionalCompilerOptions>-js-compiler-option=--variable_map_output_file gccvars.txt;-js-compiler-option+=--property_map_output_file gccprops.txt</additionalCompilerOptions>
+          <additionalCompilerOptions>-export-public-symbols=true;-externs-report=appexterns.js;-link-report=applinkreport.xml;-prevent-rename-object-keys=cssData,_bindings,ROYALE_CLASS_INFO,superClass_,qName</additionalCompilerOptions>
         </configuration>
       </plugin>
     </plugins>
diff --git a/examples/royale/ModuleExample/Module/pom.xml b/examples/royale/ModuleExample/Module/pom.xml
index 9611d53..8fd8b26 100644
--- a/examples/royale/ModuleExample/Module/pom.xml
+++ b/examples/royale/ModuleExample/Module/pom.xml
@@ -42,7 +42,7 @@
           <allowSubclassOverrides>true</allowSubclassOverrides>
           <targets>${royale.targets}</targets>
           <debug>false</debug>
-          <additionalCompilerOptions>-js-compiler-option=--variable_map_input_file ../../../../../MainApp/target/javascript/bin/js-release/gccvars.txt;-js-compiler-option+=--property_map_input_file ../../../../../MainApp/target/javascript/bin/js-release/gccprops.txt</additionalCompilerOptions>
+          <additionalCompilerOptions>-load-externs=applinkreport-js.xml;-js-compiler-option=--externs appexterns.js;-prevent-rename-object-keys=cssData,_bindings,ROYALE_CLASS_INFO,superClass_,qName</additionalCompilerOptions>
         </configuration>
       </plugin>