You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by al...@apache.org on 2020/12/23 22:11:02 UTC

[openwhisk-wskdebug] 07/11: example/nodejs: put name first in vs code launch.json examples

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

alexkli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-wskdebug.git

commit 8290e4f0fd4c72ef1147a44501f60f11060c145f
Author: Alexander Klimetschek <ak...@adobe.com>
AuthorDate: Wed Dec 23 11:07:06 2020 -0800

    example/nodejs: put name first in vs code launch.json examples
---
 examples/nodejs/.vscode/launch.json | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/examples/nodejs/.vscode/launch.json b/examples/nodejs/.vscode/launch.json
index 50f334b..c952cf3 100644
--- a/examples/nodejs/.vscode/launch.json
+++ b/examples/nodejs/.vscode/launch.json
@@ -5,11 +5,11 @@
     "version": "0.2.0",
     "configurations": [
         {
+            "name": "wskdebug",
             "type": "pwa-node",
             "request": "launch",
             "attachSimplePort": 0, // instead of "port", makes it auto-select a free debug port
             "killBehavior": "polite",
-            "name": "wskdebug",
             "runtimeExecutable": "wskdebug",
             "args": [
                 "wskdebug-examples/webaction",
@@ -23,9 +23,9 @@
             "outputCapture": "std"
         },
         {
+            "name": "wskdebug (VS Code <= 1.47)",
             "type": "node",
             "request": "launch",
-            "name": "wskdebug (VS Code <= 1.47)",
             "runtimeExecutable": "wskdebug",
             "args": [
                 "wskdebug-examples/webaction",
@@ -38,11 +38,11 @@
             "outputCapture": "std"
         },
         {
+            "name": "wskdebug ngrok",
             "type": "pwa-node",
             "request": "launch",
             "attachSimplePort": 0,
             "killBehavior": "polite",
-            "name": "wskdebug ngrok",
             "runtimeExecutable": "wskdebug",
             "args": [
                 "wskdebug-examples/webaction",
@@ -55,11 +55,11 @@
             "outputCapture": "std"
         },
         {
+            "name": "wskdebug with build",
             "type": "pwa-node",
             "request": "launch",
             "attachSimplePort": 0,
             "killBehavior": "polite",
-            "name": "wskdebug with build",
             "runtimeExecutable": "wskdebug",
             "args": [
                 "wskdebug-examples/webaction",
@@ -74,11 +74,11 @@
             "outputCapture": "std"
         },
         {
+            "name": "wskdebug with WSK_PACKAGE",
             "type": "pwa-node",
             "request": "launch",
             "attachSimplePort": 0,
             "killBehavior": "polite",
-            "name": "wskdebug with WSK_PACKAGE",
             "runtimeExecutable": "wskdebug",
             "args": [
                 "webaction"
@@ -89,4 +89,4 @@
             "envFile": "${workspaceFolder}/.env"
         }
     ]
-}
\ No newline at end of file
+}