The anatomy of a task definition is like so:
$.task(<taskname> , [dependencies] , <body>);
dependencies , is an array of tasks that HAVE to finish before the current task you are defining , runs. More like forcing a synchronous execution instead of the default Asynchronous functionality.