Skip to content

Commit

Permalink
chore(editor): do not display successful auto task terminal output (#…
Browse files Browse the repository at this point in the history
…3013)

There is an auto task in our vscode task config, which opens up terminal
every time. Changing options to not to open terminal by default if there
aren't any failures.
  • Loading branch information
kwonoj authored Jan 12, 2023
1 parent 160dd1b commit 0b0a535
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -31,4 +39,4 @@
"command": "cargo build -p turbo"
}
]
}
}

0 comments on commit 0b0a535

Please sign in to comment.