diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 15db470..1de1c7e 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -9,7 +9,7 @@ "build", "${workspaceFolder}/src/MistoxWebsite.Server/MistoxWebsite.Server.csproj", "-o", - "${workspaceFolder}/debug/" + "${workspaceFolder}/debug/", ], "problemMatcher": "$msCompile" }, @@ -25,9 +25,21 @@ ], "problemMatcher": "$msCompile" }, + { + "label": "client-packages", + "command": "npm", + "type": "process", + "options": { + "cwd": "${workspaceFolder}/src/MistoxWebsite.Client" + }, + "args": [ + "install" + ], + "problemMatcher": "$msCompile" + }, { "label": "build-all", - "dependsOn": ["client-build", "server-build" ], + "dependsOn": ["client-packages", "client-build", "server-build" ], "dependsOrder": "sequence" } ]