Guest User

Untitled

a guest
Jan 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <Target Name="BuildClientAssets" BeforeTargets="Build">
  2. <Exec Command="npm install"/>
  3. <Exec Command="npm run build"/>
  4. </Target>
  5.  
  6. <Target Name="BuildClientAssets" BeforeTargets="Publish">
  7. <Exec Command="npm install"/>
  8. <Exec Command="npm run build"/>
  9. </Target>
  10.  
  11. <Target Name="BuildClientAssets" BeforeTargets="Publish">
  12. <Exec Command="npm install" />
  13. <Exec Command="webpack --config ../Condenast.FrontEnd/webpack.config.js" />
  14. </Target>
Add Comment
Please, Sign In to add comment