grunt-parallel

Speed up your build by running commands and tasks in parallel!

  • 所有者: iammerrick/grunt-parallel
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

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.

主要指標

概覽
名稱與所有者iammerrick/grunt-parallel
主編程語言JavaScript
編程語言JavaScript (語言數: 1)
平台
許可證MIT License
所有者活动
創建於2013-02-22 20:28:03
推送於2018-07-09 05:30:02
最后一次提交2016-06-02 12:34:46
發布數2
最新版本名稱0.5.0 (發布於 )
第一版名稱v0.5.1 (發布於 2016-06-02 12:33:36)
用户参与
星數169
關注者數7
派生數23
提交數57
已啟用問題?
問題數18
打開的問題數9
拉請求數17
打開的拉請求數2
關閉的拉請求數8
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?