// Structuring Split Gulp with globalBrowsersync Instance
// https://gist.github.com/larrybotha/a4db8b9d1f8dbf4a196b85437a6c7e0b
// Module to require whole directories
var requireDir = require('require-dir');
var browserSync = require('browser-sync').create();
global.browserSync = browserSync;
// Pulling in all tasks from the tasks folder
requireDir('./gulp/tasks', { recurse: true });