|
@@ -104,13 +104,13 @@
|
|
|
<!-- Build Target: Restore NPM packages using npm -->
|
|
|
<Message Importance="high" Text="Restoring dependencies using 'npm'. This may take several minutes..." />
|
|
|
|
|
|
- <Exec WorkingDirectory="$(SpaRoot)" Command="cnpm install" />
|
|
|
+ <Exec WorkingDirectory="$(SpaRoot)" Command="npm install" />
|
|
|
</Target>
|
|
|
|
|
|
<Target Name="PublishRunWebpack" AfterTargets="ComputeFilesToPublish">
|
|
|
<!-- Build Target: Run webpack dist build -->
|
|
|
<Message Importance="high" Text="Running npm build..." />
|
|
|
- <Exec WorkingDirectory="$(SpaRoot)" Command="cnpm run build" />
|
|
|
+ <Exec WorkingDirectory="$(SpaRoot)" Command="npm run build" />
|
|
|
|
|
|
<!-- Include the newly-built files in the publish output -->
|
|
|
<ItemGroup>
|