mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Fix dependent tasks
This commit is contained in:
20
lsp-multi-server-sample/.vscode/tasks.json
vendored
20
lsp-multi-server-sample/.vscode/tasks.json
vendored
@ -4,8 +4,14 @@
|
||||
{
|
||||
"label": "compile",
|
||||
"dependsOn": [
|
||||
"compile:client",
|
||||
"compile:server"
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "compile:client"
|
||||
},
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "compile:server"
|
||||
}
|
||||
],
|
||||
"problemMatcher": []
|
||||
},
|
||||
@ -37,8 +43,14 @@
|
||||
{
|
||||
"label": "watch",
|
||||
"dependsOn": [
|
||||
"watch:client",
|
||||
"watch:server"
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "watch:client"
|
||||
},
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "watch:server"
|
||||
}
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
|
||||
Reference in New Issue
Block a user