Sign In

gulp-task-manager

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-task-manager

Easily re-use existing gulp tasks to speed up gulpfile development

latest
Source
npmnpm
Version
1.1.1
Version published
Weekly downloads
10
400%
Maintainers
1
Weekly downloads
 
Created
Source

Gulp-task-manager

Gulp Task Manager is a package to help simplify creating guplfiles

  • Check out tasks/exampleTask.js for an example on how to create a new task for gulp-task-manager
  • Check out exampleConfig.js to see an example config that uses premade tasks

Example gulpfile.js

    var gulp = require('gulp');
    var GulpTaskManager = require('gulp-task-manager');
    //Optional: Pass in a path to all your tasks
    var gulpTaskManager = new GulpTaskManager('./tasks');
    var config = require('./exampleConfig');

    gulpTaskManager.addTasks([
        require('./newTask')
    ]);

    //Load only the tasks you need
    gulpTaskManager.load([
        'clean',
        'move-externals'
    ], gulp, config);

    //Create new tasks using tasks from gulp-task-manager
    gulp.task('build', ['clean', 'move-externals']);

Keywords

gulp

FAQs

Package last updated on 08 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts