0.1.0 • Published 8 years ago

gulp-ccr-parallel v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

gulp-ccr-parallel

Run sub tasks in parallel, without waiting until the previous task has completed. A cascading configurable gulp recipe for gulp-chef.

Install

$ npm install --save-dev gulp-chef gulp-ccr-parallel

Recipe

Parallel Tasking

Ingredients

Type

Flow Controller

Usage

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

var meals = chef({
    src: 'src/',
    dest: 'dist/',
    parallel: {
        browserify: {
            bundle: {
                entry: 'index.js',
                file: 'bundle.js'
            }
        },
        styles: {
            src: '**/*.less',
            plugin: 'gulp-less',
            spit: true
        }
    }
});

gulp.registry(meals);