Skip to content

Instantly share code, notes, and snippets.

@benmanbs
Last active August 29, 2015 14:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benmanbs/96727cc3db8e7170b2f9 to your computer and use it in GitHub Desktop.
Save benmanbs/96727cc3db8e7170b2f9 to your computer and use it in GitHub Desktop.
'use strict';
var fs = require('fs');
var tasks = fs.readdirSync('./gulp/tasks');
var gulp = require('gulp');
tasks.forEach(function(task) {
require('./tasks/' + task);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment