X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=.vscode%2Ftasks.json;h=79c24b86f02a2ce3c0e7928955867c568c352244;hb=7192ee842d05611f6fb903810d6ef3a94f63b993;hp=063cbd174713a27f9b8a0980c41f27bc152c8eb3;hpb=543f2ec8f63ca39182c2c33cbfd093bc008560e7;p=rust.git diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 063cbd17471..79c24b86f02 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,9 +4,9 @@ "version": "2.0.0", "tasks": [ { + "label": "Build Extension", "type": "npm", "script": "compile", - "label": "Build Extension", "problemMatcher": { "owner": "typescript", "pattern": "$tsc", @@ -18,9 +18,9 @@ "path": "editors/code/" }, { - "label": "Build Lsp", + "label": "Build Server", "type": "shell", - "command": "cargo build", + "command": "cargo build --package ra_lsp_server", "problemMatcher": "$rustc" }, { @@ -28,33 +28,9 @@ "group": "build", "dependsOn": [ "Build Extension", - "Build Lsp" + "Build Server" ], "problemMatcher": [] }, - { - "label": "cargo watch", - "group": "build", - "isBackground": true, - "type": "shell", - "command": "cargo", - "args": [ - "watch" - ], - "problemMatcher": "$rustc-watch" - }, - { - "label": "cargo watch tests", - "group": "build", - "isBackground": true, - "type": "shell", - "command": "cargo", - "args": [ - "watch", - "-x", - "check --tests" - ], - "problemMatcher": "$rustc-watch" - } ] -} \ No newline at end of file +}