You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2019/12/23 19:53:36 UTC

[royale-asjs] branch develop updated: Fixed asconfig

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

harbs 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 92b7304  Fixed asconfig
92b7304 is described below

commit 92b7304ad50d8c81ccfedbf15d290e6cb863bb25
Author: Harbs <ha...@in-tools.com>
AuthorDate: Mon Dec 23 21:53:18 2019 +0200

    Fixed asconfig
---
 examples/crux/CruxQuickStartBasic/asconfig.json | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/examples/crux/CruxQuickStartBasic/asconfig.json b/examples/crux/CruxQuickStartBasic/asconfig.json
index 27924fa..289bea7 100644
--- a/examples/crux/CruxQuickStartBasic/asconfig.json
+++ b/examples/crux/CruxQuickStartBasic/asconfig.json
@@ -17,15 +17,16 @@
 //
 ////////////////////////////////////////////////////////////////////////////////
 {
-    "config": "royale",
+    "config": "flex",
     "compilerOptions": {
         "debug": false,
         "targets": ["JSRoyale","SWF"],
-        "source-map": true
+        "source-map": true,
+        "load-config": ["src/main/config/compile-app-config.xml"]
     },
     "additionalOptions": "-remove-circulars -js-output-optimization=skipAsCoercions",
     "files":
     [
-        "src/main/royale/HelloWorld.mxml"
+        "src/main/royale/CruxQuickStart.mxml"
     ]
 }