What's a task runner?
A task runner is computer program that runs a sequence of tasks over your source code, applying transformations to the files. For example, consider that you are writing a source code in the CoffeeScript programming language, one task would be compiling all your source code in JavaScript, other task can be concatenating all the output JavaScript files in a single file, and the third task can finally be minifying the concatenated file to minimize the file size.
These tasks will automatically be run by the task runner, you just need to write a script file to program what needs to be done and then forget to run any command line again. The task runner provides triggers to start a task whenever you change a file so that it is done transparently.
As you can see, a task runner can improve your productivity as you can forget about the details of the compilation process once you have correctly configured a task runner. It will allow you to automate all these repetitive and boring...