diff --git a/development/vscode-example/launch.json b/development/vscode-example/launch.json index 4c5cd627..ffc89a54 100644 --- a/development/vscode-example/launch.json +++ b/development/vscode-example/launch.json @@ -66,11 +66,8 @@ "compounds": [ { "name": "Honcho + Web debug", - "configurations": [ - "Bench Web", - "Honcho SocketIO Watch Schedule Worker" - ], + "configurations": ["Bench Web", "Honcho SocketIO Watch Schedule Worker"], "stopAll": true } ] -} \ No newline at end of file +} diff --git a/development/vscode-example/tasks.json b/development/vscode-example/tasks.json index daac7746..7c0e6739 100644 --- a/development/vscode-example/tasks.json +++ b/development/vscode-example/tasks.json @@ -1,22 +1,22 @@ { - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "tasks": [ - { - "label": "Clean Honcho SocketIO Watch Schedule Worker", - "detail": "When stopping the debug process from vscode window, the honcho won't receive the SIGINT signal. This task will send the SIGINT signal to the honcho processes.", - "type": "shell", - "command": "pkill -SIGINT -f bench; pkill -SIGINT -f socketio", - "isBackground": false, - "presentation": { - "echo": true, - "reveal": "silent", - "focus": false, - "panel": "shared", - "showReuseMessage": false, - "close": true - } - } - ] -} \ No newline at end of file + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Clean Honcho SocketIO Watch Schedule Worker", + "detail": "When stopping the debug process from vscode window, the honcho won't receive the SIGINT signal. This task will send the SIGINT signal to the honcho processes.", + "type": "shell", + "command": "pkill -SIGINT -f bench; pkill -SIGINT -f socketio", + "isBackground": false, + "presentation": { + "echo": true, + "reveal": "silent", + "focus": false, + "panel": "shared", + "showReuseMessage": false, + "close": true + } + } + ] +}