Book Image

Getting Started with Gulp

By : Travis Maynard
Book Image

Getting Started with Gulp

By: Travis Maynard

Overview of this book

<p>Gulp is a fast and powerful JavaScript task runner that is built upon the node.js platform. It allows you to create tasks that can automate common workflow processes. Gulp.js is comparatively new and has been developed keeping in mind the issues that developers have encountered with Grunt.</p> <p>Getting Started with Gulp introduces you to the world of building and testing JavaScript applications using gulp. This book is a hands-on guide to get you up to speed with gulp. It will instill you with the ability to automate several common development tasks to vastly improve your development workflow. It will get you started with gulp quickly and efficiently, providing you with core concepts of gulp, node.js, and npm.</p> <p>By the end of this book, you will be able to create your very own gulp environments from scratch, create and maintain tasks and project builds, and automate your workflow with plugins and custom tasks.</p>
Table of Contents (14 chapters)

Chapter 5 – Resolving Issues


In this chapter, we discussed ways to improve upon our tasks by improving error handling, ordering our source files, and cleaning up our compiled code. We learned how to set up task dependencies, generate source maps, and use an external configuration file.

In this chapter, we covered the following topics:

  • Gulp's default error handling process will be much improved in future releases, but until then, the gulp-plumber plugin will give you the additional control you need

  • The source order can be handled by introducing an ordered array of source file paths

  • In your source arrays, you can use direct paths to files along with globs without having to worry about the direct file path being processed twice