This is an automated email from the ASF dual-hosted git repository.
carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 988e76a BE0013: trying to fix asconfigc to bring more ways to build
988e76a is described below
commit 988e76a6a0a6f5f9ef6584d2819cc869e8a0bf08
Author: Carlos Rovira <[email protected]>
AuthorDate: Thu Jun 27 19:13:37 2019 +0200
BE0013: trying to fix asconfigc to bring more ways to build
---
.../JewelModule/build.xml | 2 +-
.../asconfig.json | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/JewelModule/build.xml
b/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/JewelModule/build.xml
index bd4dc09..e7cc876 100644
---
a/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/JewelModule/build.xml
+++
b/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/JewelModule/build.xml
@@ -34,7 +34,7 @@
<mkdir dir="${basedir}/../MainJewelApp/bin-debug/modules" />
<mkdir dir="${basedir}/../MainJewelApp/bin/js-debug/modules" />
<mkdir dir="${basedir}/../MainJewelApp/bin/js-release/modules" />
- <replace file="${basedir}/bin/js-debug/Module__deps.js"
+ <replace file="${basedir}/bin/js-debug/JewelModule__deps.js"
token="/JewelModule.js"
value="/modules/JewelModule.js" />
<copy file="${basedir}/bin-debug/JewelModule.swf"
todir="${basedir}/../MainJewelApp/bin-debug/modules" failonerror="false" />
diff --git
a/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/asconfig.json
b/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/asconfig.json
index 29f37c6..77ac05c 100644
---
a/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/asconfig.json
+++
b/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/asconfig.json
@@ -22,14 +22,14 @@
"debug": false,
"targets": ["JSRoyale"],
"source-map": true,
- "html-template":
"src/main/resources/jewel-example-index-template.html",
+ "html-template":
"MainJewelApp/src/main/resources/jewel-example-index-template.html",
"theme":
"${royalelib}/themes/JewelTheme/src/main/resources/defaults.css"
},
"copySourcePathAssets": true,
"additionalOptions": "-remove-circulars
-js-output-optimization=skipAsCoercions",
"files":
[
- "MainJewelApp/src/main/royale/MainJewelApp.mxml",
- "JewelModule/src/main/royale/JewelModule.mxml"
+ "JewelModule/src/main/royale/JewelModule.mxml",
+ "MainJewelApp/src/main/royale/MainJewelApp.mxml"
]
}