Skip to content

frontend-3/gulp-simple-load-tasks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-simple-load-tasks

A simple "plugin" for gulp that allows you to load tasks from a path and that way your tasks can be modular.

Installation

The package can be installed with npm

npm install gulp-simple-load-tasks

Usage

Require the package in your gulpfile.js and throw grunt in it. This usually looks this way:

var gulp = require('gulp');

require('gulp-simple-load-tasks')(gulp);

gulp.loadTasks(__dirname + "/tasks");

Every task into folder tasks could be wrapper in this way.

module.exports = function(gulp) {
  gulp.task('b', function() {});
};

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published