You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2018/09/09 20:48:57 UTC

[royale-asjs] branch develop updated: JewelTheme config files for VSCode

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 509b82a  JewelTheme config files for VSCode
509b82a is described below

commit 509b82ac4335bb29bc776f661fdf4878c210ac25
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Sun Sep 9 22:48:52 2018 +0200

    JewelTheme config files for VSCode
---
 frameworks/themes/JewelTheme/.vscode/tasks.json | 70 ++++++++++++++++++++++---
 frameworks/themes/JewelTheme/asconfig.json      |  8 +--
 2 files changed, 68 insertions(+), 10 deletions(-)

diff --git a/frameworks/themes/JewelTheme/.vscode/tasks.json b/frameworks/themes/JewelTheme/.vscode/tasks.json
index 5d6198d..4a047cb 100644
--- a/frameworks/themes/JewelTheme/.vscode/tasks.json
+++ b/frameworks/themes/JewelTheme/.vscode/tasks.json
@@ -1,8 +1,66 @@
 {
-	// for the documentation about the tasks.json format
-	"version": "0.1.0",
-	"command": "mvn",
-	"args": ["clean", "install", "-DskipTests"],
-	"isShellCommand": true,
-	"showOutput": "always"
+    // See https://go.microsoft.com/fwlink/?LinkId=733558
+    // for the documentation about the tasks.json format
+    "version": "2.0.0",
+    "tasks": [
+        {
+            "label": "Build Debug with AS3 Extension",
+            "type": "actionscript",
+            "debug": true,
+            "problemMatcher": [
+                "$nextgenas_nomatch"
+            ],
+            "group": "build"
+        },
+        {
+            "label": "Build with Maven",
+            "type": "shell",
+            "command": "mvn",
+            "args": [
+                "clean",
+                "install",
+                "-DskipTests"
+            ],
+            "group": "build",
+            "presentation": {
+                "reveal": "always",
+                "panel": "new"
+            },
+            "problemMatcher": []
+        },
+        {
+            "label": "Build Release with AS3 Extension",
+            "type": "actionscript",
+            "debug": false,
+            "problemMatcher": [
+                "$nextgenas_nomatch"
+            ],
+            "group": "build"
+        },
+        {
+            "label": "build with asconfigc",
+            "type": "shell",
+            "command": "asconfigc",
+            "windows": {
+                "args": [
+                    "--sdk=C:\\Apache\\royale-asjs"
+                ]
+            },
+            "osx": {
+                "args": [
+                    "--sdk=${env:ROYALE_HOME}"
+                ]
+            },
+            "presentation": {
+                "echo": true,
+                "reveal": "always",
+                "focus": true,
+                "panel": "dedicated"
+            },
+            "problemMatcher": [
+                "$nextgenas_nomatch"
+            ],
+            "group": "build"
+        }
+    ]
 }
\ No newline at end of file
diff --git a/frameworks/themes/JewelTheme/asconfig.json b/frameworks/themes/JewelTheme/asconfig.json
index 1cb76c0..3a2098c 100644
--- a/frameworks/themes/JewelTheme/asconfig.json
+++ b/frameworks/themes/JewelTheme/asconfig.json
@@ -20,13 +20,13 @@
     "compilerOptions": {
         "debug": true,
         "targets": [
-            "JSRoyale",
-            "SWF"
+            "SWF",
+            "JSRoyale"
         ],
         "include-classes": [
-            "JewelThemeClasses"
+            "src/main/royale/JewelThemeClasses.as"
         ],
-        "include-sources": [
+        "source-path": [
             "src/main/royale"
         ],
         "output": "target/JewelTheme.swc"