npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gulp-tasks-registrator

v0.4.0

Published

Registers gulp tasks from folders

Downloads

62

Readme

gulp-tasks-registrator

Clean up your Gulpfile by splitting it into small isolated tasks

Gulp tasks registrator.

npm version Build Status

Registrator runs through a given directory and registers found .js files as gulp tasks.

Install


    $ npm install --save-dev gulp-tasks-registrator

Basic Usage

For example, we have this folder structure with our tasks:


    tasks
        env.js
        build
            scripts
                app.js
                vendors.js
            styles.js

Registrator will create tasks using convention - {folder1}:{folderN}:{filename}, ignoring root folder:

  • env
  • build:styles
  • build:scripts:app
  • build:scripts:vendors

./gulpfile.js


    var path = require('path');
    var $ = require('gulp-load-plugins')(
        pattern: [
            'gulp',
            'gulp-*',
            'gulp.*'
        ]
    );

    require('gulp-tasks-registrator')({
        gulp: $.gulp,
        dir: path.join(__dirname, '/tasks'),
        args: [$]
    });

./tasks/env.js

Each file should contain factory function which returns an actual task function.
Factory will receive any arguments that were passed into registrator.


    module.exports = function factory($) {
        return task() {
            return $.gulp.src(...)
        };
    };

Grouping tasks

We can group small tasks with, so called, high order tasks, just by setting group parameter to true.


    require('gulp-tasks-registrator')({
        gulp: gulp,
        dir: path.join(__dirname, '/tasks'),
        args: [gulp],
        group: true
    });

For example, we have this folder structure with our tasks:


    tasks
        env.js
        build
            scripts.js
            styles.js
            assets.js

Except regular tasks, we will register high order task called build, which will have all nested tasks as dependencies (nested high order tasks included).

It will be the same if we created it manually, like this:


    gulp.task('build', ['build:scripts', 'build:styles', 'build:assets'], function(done) {
        done();
    });

Tasks dependencies

Also, since version 0.3.0, it is possible to define dependencies for each tasks:


    module.exports = function factory($) {
        const task = task() {
            return $.gulp.src(...)
        };

        task.dependencies = ['task1', 'task2'];

        return task;
    };

API

registrator(options)

options.gulp

Type: object.
Gulp instance.

options.dir

Type: string.
Full path to task factories directory.

options.group

Type: boolean.
Creates gulp task based on folder name and adds nested tasks as dependencies.
Optional.

options.args

Type: Array<any>.
Arguments to pass to task factories.
Optional.

options.filter

Type: String|Function.
RegExp string or a function for tasks filtering.
Task full path is passed as a function argument.
Optional.

options.verbose

Type: boolean.
Defines whether to push to console logs.
Optional.
Default false.

options.panic

Type: boolean.
Defines whether to throw error if task registration failed.
Optional.
Default true.

License

The MIT License (MIT)
Copyright (C) 2015 Tim Voronov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.