disable npm optional dependencies (#447)
'microtime' doesn't build properly on our CI agents
This commit is contained in:
parent
67ecd4746e
commit
11f23f7ce2
|
|
@ -1,7 +1,7 @@
|
|||
<Project>
|
||||
<Target Name="RestoreNpm" AfterTargets="Restore" Condition="'$(PreflightRestore)' != 'True'">
|
||||
<Message Text="Restoring NPM modules" Importance="high" />
|
||||
<Exec Command="npm install" WorkingDirectory="$(RepositoryRoot)client-ts" />
|
||||
<Exec Command="npm install --no-optional" WorkingDirectory="$(RepositoryRoot)client-ts" />
|
||||
</Target>
|
||||
|
||||
<Target Name="RunTSClientNodeTests" AfterTargets="Test">
|
||||
|
|
|
|||
Loading…
Reference in New Issue