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 05:57:46 UTC

[royale-asjs] branch ReleaseModules updated: update config to use list format

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 945f79f  update config to use list format
945f79f is described below

commit 945f79f0fd507e74ff3d37cd572a5ef7d6c9915f
Author: Alex Harui <ah...@apache.org>
AuthorDate: Sat Jan 22 21:57:35 2022 -0800

    update config to use list format
---
 .../ModuleExample/MainApp/src/main/config/compile-app-config.xml  | 8 +++++++-
 .../ModuleExample/Module/src/main/config/compile-app-config.xml   | 8 +++++++-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/examples/royale/ModuleExample/MainApp/src/main/config/compile-app-config.xml b/examples/royale/ModuleExample/MainApp/src/main/config/compile-app-config.xml
index 26464b4..f6d9825 100644
--- a/examples/royale/ModuleExample/MainApp/src/main/config/compile-app-config.xml
+++ b/examples/royale/ModuleExample/MainApp/src/main/config/compile-app-config.xml
@@ -20,5 +20,11 @@
     <export-public-symbols>true</export-public-symbols>
     <externs-report>../../../appexterns.js</externs-report>
     <link-report>../../../applinkreport.xml</link-report>
-    <prevent-rename-object-keys>cssData,_bindings,ROYALE_CLASS_INFO,superClass_,qName</prevent-rename-object-keys>
+    <prevent-rename-object-keys>
+        <key>cssData</key>
+        <key>_bindings</key>
+        <key>ROYALE_CLASS_INFO</key>
+        <key>superClass_</key>
+        <key>qName</key>
+    </prevent-rename-object-keys>
 </royale-config>
diff --git a/examples/royale/ModuleExample/Module/src/main/config/compile-app-config.xml b/examples/royale/ModuleExample/Module/src/main/config/compile-app-config.xml
index d273aba..c6bfb7a 100644
--- a/examples/royale/ModuleExample/Module/src/main/config/compile-app-config.xml
+++ b/examples/royale/ModuleExample/Module/src/main/config/compile-app-config.xml
@@ -21,5 +21,11 @@
     <js-compiler-option>
         <option>--externs ../../../../MainApp/appexterns.js</option>
     </js-compiler-option>
-    <prevent-rename-object-keys>cssData,_bindings,ROYALE_CLASS_INFO,superClass_,qName</prevent-rename-object-keys>
+    <prevent-rename-object-keys>
+        <key>cssData</key>
+        <key>_bindings</key>
+        <key>ROYALE_CLASS_INFO</key>
+        <key>superClass_</key>
+        <key>qName</key>
+    </prevent-rename-object-keys>
 </royale-config>