Code Monkey home page Code Monkey logo

grunt-parallel's Introduction

grunt-parallel

Run commands and tasks in parallel to speed up your build.

Getting Started

Install this grunt plugin next to your project's Gruntfile.js gruntfile with: npm install grunt-parallel --save-dev

Then add this line to your project's Gruntfile.js gruntfile:

grunt.loadNpmTasks('grunt-parallel');

Documentation

The Configuration

grunt.initConfig({
    parallel: {
      mix: {
        tasks: [{
          grunt: true,
          args: ['fast']
        }, {
          grunt: true,
          args: ['block']
        }, {
          cmd: 'pwd'
        },{
          grunt: true,
          args: ['fast']
       }]
      },
      shell: {
        tasks: [{
          cmd: 'whoami'
        }]
      },
      grunt: {
        options: {
          grunt: true
        },
        tasks: ['fast', 'block', 'fast']
      },
      stream: {
        options: {
          stream: true
        },
        tasks: [ { cmd: 'tail', args: ['-f', '/var/log/system.log'] }]
      }
    }
  });

Example

Example

Settings

grunt.initConfig({
  parallel: {
    assets: {
      tasks: [{
        grunt: true,
        args: ['requirejs']
      }, {
        grunt: true,
        args: ['compass']
      },{
        cmd: 'some-custom-shell-script.sh'
      }]
    }
  }
});

Streaming Log Output For Never Ending Tasks

Sometimes tasks don't end and consequently you don't want to wait to receive their output till they are done, because you would never see their output. Think of watching files or tailing logs. For this case you can set the stream option to true, and all of the tasks output will be logged to your console, this is letting the sub process inherit your stdio.

grunt.initConfig({
  stream: {
    options: {
      stream: true
    },
    tasks: [{ cmd: 'tail', args: ['-f', '/var/log/system.log']}]
  }
});

Since tail runs till you send it a shutdown signal, you would like to stream the output to your stdio.

Only Using Grunt

If you are only going to delegate to other grunt tasks you can simply put grunt: true in your tasks configuration and grunt-parallel will run them all using grunt.

grunt.initConfig({
  parallel: {
    assets: {
      options: {
        grunt: true
      },
      tasks: ['fast', 'block', 'fast']
    }
  }
});

One might target the task using grunt parallel:assets. This would run compass, requirejs, and a custom shell script at the same time, each logging to your console when they are done.

License

Copyright (c) 2013 Merrick Christensen Licensed under the MIT license.

grunt-parallel's People

Contributors

iammerrick avatar dylang avatar vernonk avatar neojski avatar alfred-nsh avatar vojtajina avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.