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.
- Host: GitHub
- URL: https://github.com/yamadapc/gulp-load-directory
- Owner: yamadapc
- License: mit
- Created: 2015-09-11T19:09:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-11T19:09:21.000Z (over 9 years ago)
- Last Synced: 2024-12-24T11:57:50.461Z (5 months ago)
- Language: JavaScript
- Size: 125 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.