From 2ac17f64cd64344cdf61cbc70e079d118e6a1701 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Fri, 20 Jun 2025 18:42:26 -0700 Subject: [PATCH] Add the module pull step --- .vscode/tasks.json | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) 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" } ]