Skip to content

Instantly share code, notes, and snippets.

@tonnguyen
Created March 16, 2020 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonnguyen/5028dc654903092d2865dbaf849fd6cb to your computer and use it in GitHub Desktop.
Save tonnguyen/5028dc654903092d2865dbaf849fd6cb to your computer and use it in GitHub Desktop.
Compile js before build
<Target Name="ProductionBuild" BeforeTargets="BeforeBuild" Condition=" '$(Configuration)' == 'Release'">
<Exec Command="yarn install" />
<Exec Command="yarn run prod" />
</Target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment