eva-sdk-js
Version:
The JavaScript based SDK for the EVA platform
23 lines (19 loc) • 498 B
JavaScript
/**
* Welcome to your gulpfile!
* The gulp tasks are splitted in several files in the gulp directory
* because putting all here was really too long
*/
;
var wrench = require( "wrench" );
/**
* This will load all js or coffee files in the gulp directory
* in order to load all gulp tasks
*/
wrench.readdirSyncRecursive( "./gulp" ).filter( function( file )
{
return ( /\.(js|coffee)$/i ).test( file );
} )
.map( function( file )
{
require( "./gulp/" + file );
} );