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

Using files in a task


Tasks are commonly required to access a specific set of files, either using the data they contain, or altering it in some way. Grunt provides a uniform way of specifying sets of files using the src, dest, and files properties that can be used at either the task or target levels.

Getting ready

In this example, we'll be working 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 multi-task recipe provided earlier in this chapter.

How to do it...

The following steps will take us through creating some sample data files and a simple task that prints their contents:

  1. Let's start by creating two sample files called one.dat and two.dat in a new directory called data and providing them with the following contents:

    one.dat - Initial sample data.
    two...