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

Compiling Sass to CSS


In this recipe, we'll make use of the sass (0.12.1) plugin to compile our Sass style sheets to CSS style sheets, which can be used by our web application.

Tip

The contrib-sass plugin is slightly more popular and more mature that the sass plugin but requires the Sass Ruby library to be installed, which seems to be an unnecessary step for this recipe.

Please note that at the time of writing, the sass plugin did not work with Version 0.11.* of Node.js, but a solution for this issue was in the works. In the following recipe, Version 0.10.* was used.

Getting ready

In this example, we'll work with the basic project structure that 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.

How to do it...

The following steps will take us through creating a simple Sass style sheet and compiling it to CSS:

  1. We'll start by installing the package that contains the sass plugin as per...