gulp-autoload-tasks
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "gulp-autoload-tasks", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "Auto loads gulp tasks for large modular projects", | ||
@@ -5,0 +5,0 @@ "author": "Shai Reznik (http://www.hirez.io)", |
@@ -59,4 +59,13 @@ # gulp-autoload-tasks | ||
Loads every file in the gulpTasksDir (`gulp_tasks` by default) with the following params - `gulp`, `plugins`, `config`. So that your module declaration looks like | ||
Loads every file in the gulpTasksDir (`gulp_tasks` by default) with the following params - `gulp`, `plugins`, `config`. So that your module declaration looks like | ||
`gulpfile.js`: | ||
```javascript | ||
var autoLoadTasks = require('gulp-autoload-tasks'); | ||
autoLoadTasks(gulp, plugins, config, gulpTaskDir); | ||
``` | ||
`some_gulp_task.js`: | ||
```javascript | ||
module.exports = function (gulp, plugins, config) { | ||
@@ -63,0 +72,0 @@ /* code goes here */ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4466
104