Using a task runner
In this section, we’ll explain what a task runner is, what its responsibilities are, how to automatically execute it when building the solution, and provide some examples of how to use it.
As developers, we are always looking for better ways to quickly automate tasks. With JavaScript frameworks, this task is essential, especially when building the solution in a Continuous Integration/Continuous Delivery (CI/CD) pipeline. The consistent repetition of certain tasks becomes monotonous and takes away from development time. Why not have a computer process the work?
As developers, the need to include a task runner section in this chapter is meant to show developers how to automate tasks to make client-side endeavors more efficient. In recent years, I’ve experienced developers who’ve never used a task runner for client-side tasks or even know what it is. A task runner is a tremendous benefit to all developers.
What is a task runner?
As...