An open API service indexing awesome lists of open source software.

https://github.com/yamadapc/gulp-load-directory

A bootstrapping function for loading a directory of gulp tasks.
https://github.com/yamadapc/gulp-load-directory

Last synced: 3 months ago
JSON representation

A bootstrapping function for loading a directory of gulp tasks.

Awesome Lists containing this project

README

        

gulp-load-directory
===================
A bootstrapping function for loading a directory of gulp tasks.

## Usage
```javascript
'use strict';
var path = require('path');
var gulp = require('gulp');
var loadDirectory = require('gulp-load-directory');

loadDirectory(path.join(__dirname, 'tasks'));
gulp.task('default', ['copy', 'browserify']);
```

## LICENSE
This code is licensed under the MIT license for Pedro Tacla Yamada. For more
information please refer to the [LICENSE](/LICENSE) file.