Skip to content

Commit

Permalink
Removed default build task for klighd cli.
Browse files Browse the repository at this point in the history
  • Loading branch information
soerendomroes committed Oct 17, 2023
1 parent 4c04e1c commit c7a188d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,15 @@
"args": ["--extensionDevelopmentPath=${workspaceFolder}/applications/klighd-vscode"],
"sourceMaps": true,
"smartStep": true,
"outFiles": ["${workspaceFolder}/applications/klighd-vscode/dist/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
"outFiles": ["${workspaceFolder}/applications/klighd-vscode/dist/**/*.js"]
},
{
"name": "Start CLI Webserver",
"type": "node",
"request": "launch",
"address": "127.0.0.1:8000",
"outputCapture": "std",
"program": "${workspaceFolder}/applications/klighd-cli/lib/main.js",
"preLaunchTask": "${defaultBuildTask}"
"program": "${workspaceFolder}/applications/klighd-cli/lib/main.js"
},
{
"name": "Start CLI Webserver (Port)",
Expand All @@ -30,8 +28,7 @@
"address": "127.0.0.1:8000",
"outputCapture": "std",
"program": "${workspaceFolder}/applications/klighd-cli/lib/main.js",
"args": ["--ls_port=5007"],
"preLaunchTask": "${defaultBuildTask}"
"args": ["--ls_port=5007"]
},
{
"name": "Launch in Chrome",
Expand Down

0 comments on commit c7a188d

Please sign in to comment.