Skip to content

Instantly share code, notes, and snippets.

@luismanez
Created February 18, 2017 10:40
Show Gist options
  • Select an option

  • Save luismanez/1f93f4b7d61a60b48e025ebc3856f451 to your computer and use it in GitHub Desktop.

Select an option

Save luismanez/1f93f4b7d61a60b48e025ebc3856f451 to your computer and use it in GitHub Desktop.
// execute after TypeScript task
build.rig.addPostTypescriptTask(helloWorldTask);
//execute before TypeScript task
build.rig.addBuildTasks(helloWorldTask);
//execute after all tasks
build.rig.addPostBuildTask(helloWorldTask);
//execute before all tasks
build.rig.addPreBuildTask(helloWorldTask);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment