Add the module pull step

This commit is contained in:
2025-06-20 18:42:26 -07:00
parent fb2a2c6ae9
commit 2ac17f64cd
+14 -2
View File
@@ -9,7 +9,7 @@
"build", "build",
"${workspaceFolder}/src/MistoxWebsite.Server/MistoxWebsite.Server.csproj", "${workspaceFolder}/src/MistoxWebsite.Server/MistoxWebsite.Server.csproj",
"-o", "-o",
"${workspaceFolder}/debug/" "${workspaceFolder}/debug/",
], ],
"problemMatcher": "$msCompile" "problemMatcher": "$msCompile"
}, },
@@ -25,9 +25,21 @@
], ],
"problemMatcher": "$msCompile" "problemMatcher": "$msCompile"
}, },
{
"label": "client-packages",
"command": "npm",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/src/MistoxWebsite.Client"
},
"args": [
"install"
],
"problemMatcher": "$msCompile"
},
{ {
"label": "build-all", "label": "build-all",
"dependsOn": ["client-build", "server-build" ], "dependsOn": ["client-packages", "client-build", "server-build" ],
"dependsOrder": "sequence" "dependsOrder": "sequence"
} }
] ]