Book Image

Grunt Cookbook

By : Jurie-Jan Botha
Book Image

Grunt Cookbook

By: Jurie-Jan Botha

Overview of this book

<p>A web application can quickly turn into a complex orchestration of many smaller components, each one requiring its own bit of maintenance. Grunt allows you to automate all the repetitive tasks required to get everything working together by using JavaScript, the most popular programming language.</p> <p>Grunt Cookbook offers a host of easy-to-follow recipes for automating repetitive tasks in your web application's development, management, and deployment processes. This book will introduce you to methods that can be used to automate basic processes and your favorite tools. By following the recipes, you will soon be comfortable using Grunt to perform a wide array of advanced tasks in a range of different scenarios.</p>
Table of Contents (17 chapters)
Grunt Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Checking for the successful execution of other tasks


Due to it being detrimental to the reusability of a task, it's not at all common to have tasks depending on one another, due to it being detrimental to the reusability of a task. If tasks are so tightly coupled that they can't run independently, it should strongly be considered to combine them into a single task.

That being said, there are always exceptions, and Grunt provides for this by way of the grunt.task.requires function. When called, this function will check whether the task with the specified name has been successfully executed. If it finds that this is not the case, it will fail the current task.

Getting ready

In this example, we'll work with the basic project structure we created in the Installing Grunt on a project recipe in Chapter 1, Getting Started with Grunt. Be sure to refer to it if you are not yet familiar with its contents.

If any of the steps in this recipe seem hard to follow, be sure to check out the Creating a basic...