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-chug

v0.5.1

Published

Run external gulpfiles as part of a gulp task inside another gulpfile

Downloads

40,661

Readme

gulp-chug NPM version Build Status Dependency Status

A gulp plugin for running external gulpfiles as part of a gulp task inside another gulpfile.

gulp-chug is non-modifying, i.e., gulp-chug will return the same stream it receives. See Use with other plugins for an example.

Requires node >= 0.10

Inspired by shama's grunt-hub.

Note: This plugin has been blacklisted, however I have yet to find an example of a pattern that allows for the execution of child gulpfiles without task name collisions. If you have an example, let me know!

Install

Install with npm:

npm install gulp-chug

Usage

Run external gulpfiles

Run one external gulpfile:

var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );

gulp.task( 'default', function () {
    gulp.src( './subproj/gulpfile.js' )
        .pipe( chug() )
} );

Run multiple external gulpfiles:

var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );

gulp.task( 'default', function () {

    // Find and run all gulpfiles under all subdirectories
    gulp.src( './**/gulpfile.js' )
        .pipe( chug() )
} );

Use with other plugins

grunt-chug will not modify streams passed to it, but will happily accept streams modified by other plugins:

var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );
var replace = require( 'gulp-replace' );

gulp.task( 'default', function () {
    gulp.src( './subproj/gulpfile.js' )

        // Transform stream with gulp-replace
        .pipe( replace( 'Hello', 'Goodbye' ) )

        // Run modified stream with gulp-chug
        .pipe( chug() )
} );

Make gulp-chug faster by ignoring file contents

If gulp-chug is the only plugin in the stream, there's no need to actually read the contents of the gulpfiles. Set { read: false } in gulp.src to speed things up:

var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );

gulp.task( 'default', function () {
    gulp.src( './subproj/gulpfile.js', { read: false } )
        .pipe( chug() )
} );

Options

Gulp chug supports several options, all of which are optional, e.g.,

var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );

gulp.task( 'default', function () {
    gulp.src( './subproj/gulpfile.js' )
        .pipe( chug( {
            nodeCmd: 'node',
            tasks:  [ 'default' ],
            args:   [ '--my-arg-1', '--my-arg-2' ]
        } ) );
} );

tasks

The tasks to run from each gulpfile. Default is default.

chug( {
    tasks: [ 'my-task-1', 'my-task-2' ]
} )

nodeCmd

The node command to spawn when running gulpfiles. Default is node.

chug( {
    nodeCmd: './my-node-bin'
} )

args

Additional command-line arguments to pass to each spawned process. Default is none.

chug( {
    args: [ '--my-arg-1', '--my-arg-2' ]
} )

Callback

You can pass a callback function to gulp chug that will be executed after the external gulpfile has finished running.

var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );

gulp.task( 'default', function () {

    gulp.src( './subproj/gulpfile.js' )
        .pipe( chug( function () {
            console.log( 'Done' );
        } ) )
} );

In combination with gulp-chug options:

var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );

gulp.task( 'default', function () {

    gulp.src( './subproj/gulpfile.js' )
        .pipe( chug( {
            tasks: [ 'my-task-1', 'my-task-2' ]
        }, function () {
            console.log( 'Done' );
        } ) )
} );

See also

  • gulp-hub - Load tasks from other gulpfiles

Changelog

0.4

  • Add option to pass additional command-line arguments to each gulpfile
  • Update deps

0.3

  • Add nodeCmd option to choose one's own node binary to spawn
  • Add error handling for spawned processes
  • Update deps

0.2

  • Use child_process.spawn instead of child_process.exec for real-time child gulpfile output (see exec vs spawn)
  • Implement proper unit tests
  • Fix bug where temp gulpfile would be written to the glob base instead of as a sibling to the original gulpfile

0.1

  • Initial release

License

The MIT License (MIT)

Copyright (c) 2014 Rob McGuire-Dale

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.