diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a397a683e88ec..af82a9485b6b2 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,18 +2,26 @@ "version": "2.0.0", "tasks": [ { - "runOptions": { "runOn": "folderOpen" }, + "runOptions": { + "runOn": "folderOpen" + }, "label": "Compile protobufs", "type": "shell", "options": { "cwd": "${workspaceRoot}/cli" }, + "presentation": { + "reveal": "silent" + }, "command": "make compile-protos" }, { "type": "shell", "label": "prepare e2e", - "dependsOn": ["make turbo", "make install"] + "dependsOn": [ + "make turbo", + "make install" + ] }, { "type": "shell", @@ -31,4 +39,4 @@ "command": "cargo build -p turbo" } ] -} +} \ No newline at end of file