You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2018/12/06 13:51:01 UTC

[royale-asjs] branch develop updated: Fix launch.json

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

yishayw 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 8e49878  Fix launch.json
8e49878 is described below

commit 8e49878187e4e8579e12d69ad94b8cf21b258314
Author: DESKTOP-RH4S838\Yishay <yi...@hotmail.com>
AuthorDate: Thu Dec 6 14:50:47 2018 +0100

    Fix launch.json
---
 examples/royale/JewelExample/.vscode/launch.json | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/examples/royale/JewelExample/.vscode/launch.json b/examples/royale/JewelExample/.vscode/launch.json
index 06f98a5..0316344 100644
--- a/examples/royale/JewelExample/.vscode/launch.json
+++ b/examples/royale/JewelExample/.vscode/launch.json
@@ -1,11 +1,12 @@
 {
     "version": "0.2.0",
     "configurations": [
+        
         {
             "name": "Launch Chrome (Debug version)",
             "type": "chrome",
             "request": "launch",
-            "file": "${workspaceRoot}/target/javascript/bin/js-debug/index.html",
+            "file": "${workspaceRoot}/bin/js-debug/index.html",
             //"preLaunchTask": "mvn",
             "sourceMaps": true
         },
@@ -13,7 +14,7 @@
             "name": "Launch Chrome (Release version)",
             "type": "chrome",
             "request": "launch",
-            "file": "${workspaceRoot}/target/javascript/bin/js-release/index.html",
+            "file": "${workspaceRoot}/bin/js-release/index.html",
             //"preLaunchTask": "mvn",
             "sourceMaps": true
         },
@@ -21,7 +22,7 @@
             "name": "Launch Firefox (Debug version)",
             "type": "firefox",
             "request": "launch",
-            "file": "${workspaceRoot}/target/javascript/bin/js-debug/index.html",
+            "file": "${workspaceRoot}/bin/js-debug/index.html",
             //"preLaunchTask": "mvn",
             "sourceMaps": true
         },
@@ -29,7 +30,7 @@
             "name": "Launch Firefox (Release version)",
             "type": "firefox",
             "request": "launch",
-            "file": "${workspaceRoot}/target/javascript/bin/js-release/index.html",
+            "file": "${workspaceRoot}/bin/js-release/index.html",
             //"preLaunchTask": "mvn",
             "sourceMaps": true
         }


RE: [royale-asjs] branch develop updated: Fix launch.json

Posted by Yishay Weiss <yi...@hotmail.com>.
Maybe I should be more precise, this fixes VSCode not launching a debug session. Did I break some other use case?



________________________________
From: yishayw@apache.org <yi...@apache.org>
Sent: Thursday, December 6, 2018 2:51:01 PM
To: commits@royale.apache.org
Subject: [royale-asjs] branch develop updated: Fix launch.json

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

yishayw 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 8e49878  Fix launch.json
8e49878 is described below

commit 8e49878187e4e8579e12d69ad94b8cf21b258314
Author: DESKTOP-RH4S838\Yishay <yi...@hotmail.com>
AuthorDate: Thu Dec 6 14:50:47 2018 +0100

    Fix launch.json
---
 examples/royale/JewelExample/.vscode/launch.json | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/examples/royale/JewelExample/.vscode/launch.json b/examples/royale/JewelExample/.vscode/launch.json
index 06f98a5..0316344 100644
--- a/examples/royale/JewelExample/.vscode/launch.json
+++ b/examples/royale/JewelExample/.vscode/launch.json
@@ -1,11 +1,12 @@
 {
     "version": "0.2.0",
     "configurations": [
+
         {
             "name": "Launch Chrome (Debug version)",
             "type": "chrome",
             "request": "launch",
-            "file": "${workspaceRoot}/target/javascript/bin/js-debug/index.html",
+            "file": "${workspaceRoot}/bin/js-debug/index.html",
             //"preLaunchTask": "mvn",
             "sourceMaps": true
         },
@@ -13,7 +14,7 @@
             "name": "Launch Chrome (Release version)",
             "type": "chrome",
             "request": "launch",
-            "file": "${workspaceRoot}/target/javascript/bin/js-release/index.html",
+            "file": "${workspaceRoot}/bin/js-release/index.html",
             //"preLaunchTask": "mvn",
             "sourceMaps": true
         },
@@ -21,7 +22,7 @@
             "name": "Launch Firefox (Debug version)",
             "type": "firefox",
             "request": "launch",
-            "file": "${workspaceRoot}/target/javascript/bin/js-debug/index.html",
+            "file": "${workspaceRoot}/bin/js-debug/index.html",
             //"preLaunchTask": "mvn",
             "sourceMaps": true
         },
@@ -29,7 +30,7 @@
             "name": "Launch Firefox (Release version)",
             "type": "firefox",
             "request": "launch",
-            "file": "${workspaceRoot}/target/javascript/bin/js-release/index.html",
+            "file": "${workspaceRoot}/bin/js-release/index.html",
             //"preLaunchTask": "mvn",
             "sourceMaps": true
         }