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/13 21:59:55 UTC

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

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 a050b7e  fix launch.json file
     new af9560f  Merge branch 'develop' of https://github.com/apache/royale-asjs into develop
a050b7e is described below

commit a050b7e5b8d0f76192d1b2d5331cfd0310e20b2c
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Thu Sep 13 23:59:22 2018 +0200

    fix launch.json file
---
 examples/royale/JewelExample/.vscode/launch.json | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/examples/royale/JewelExample/.vscode/launch.json b/examples/royale/JewelExample/.vscode/launch.json
index 5dfb672..ac2472a 100644
--- a/examples/royale/JewelExample/.vscode/launch.json
+++ b/examples/royale/JewelExample/.vscode/launch.json
@@ -6,16 +6,18 @@
             "type": "chrome",
             "request": "launch",
             "file": "${workspaceRoot}/target/javascript/bin/js-debug/index.html",
-            "sourceMaps": true,
-            "preLaunchTask": "mvn"
+            "sourceMaps": true
+            // ,
+            // "preLaunchTask": "mvn"
         },
         {
             "name": "Launch Firefox against debug.html, with sourcemaps",
             "type": "firefox",
             "request": "launch",
             "file": "${workspaceRoot}/target/javascript/bin/js-debug/index.html",
-            "sourceMaps": true,
-            "preLaunchTask": "mvn"
+            "sourceMaps": true
+            // ,
+            // "preLaunchTask": "mvn"
         }
     ]
 }