UNPKG

589 BJavaScriptView Raw
1'use strict';
2
3/*
4 gulpfile.js
5 ===========
6
7 Rather than manage one giant configuration file responsible
8 for creating multiple tasks, each task has been broken out into
9 its own file in gulp/tasks. Any files in that directory get
10 automatically required below.
11
12 To add a new task, simply add a new task file the gulp/tasks directory.
13 gulp/tasks/default.js specifies the default set of tasks to run
14 when you run `gulp`.
15*/
16
17var requireDir = require( 'require-dir' );
18
19// Require all tasks in gulp/tasks, including subfolders
20requireDir( './scripts/gulp', { recurse: true } );